forked from organicmaps/organicmaps
[android] Fixed typo with Internet.
Signed-off-by: Viktor Govako <viktor.govako@gmail.com>
This commit is contained in:
parent
e0d5920559
commit
ddecbb4c3e
1 changed files with 1 additions and 1 deletions
|
@ -973,7 +973,7 @@ public class PlacePageView extends NestedScrollViewClickFixed
|
|||
private void refreshWiFi(@NonNull MapObject mapObject)
|
||||
{
|
||||
final String inet = mapObject.getMetadata(Metadata.MetadataType.FMD_INTERNET);
|
||||
if (inet != null)
|
||||
if (!TextUtils.isEmpty(inet))
|
||||
{
|
||||
mWifi.setVisibility(View.VISIBLE);
|
||||
/// @todo Better (but harder) to wrap C++ osm::Internet into Java, instead of comparing with "no".
|
||||
|
|
Loading…
Add table
Reference in a new issue