fix build

This commit is contained in:
Conny Duck 2019-01-14 22:29:12 +01:00
parent 3ab78a19bc
commit fa0ee82fe4
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ public class NotificationsFragment extends SFragment implements
Either<Placeholder, Notification> first = CollectionsKt.firstOrNull(this.notifications); Either<Placeholder, Notification> first = CollectionsKt.firstOrNull(this.notifications);
String topId; String topId;
if (first != null && first.isRight()) { if (first != null && first.isRight()) {
topId = first.getAsRight().getId(); topId = first.asRight().getId();
} else { } else {
topId = null; topId = null;
} }