show sign-in benefits popup also when no "last dismissed" setting is found at all

This commit is contained in:
Axel Uhl
2025-09-24 14:06:11 +02:00
parent de485367fd
commit 94725cc34e
2 changed files with 2 additions and 1 deletions
@@ -42,7 +42,6 @@ public class HomePlacesNavigator extends AbstractPlaceNavigator {
return createGlobalPlaceNavigation(new EventsPlace());
}
public PlaceNavigation<MoreLoginInformationPlace> getMoreLoginInfo() {
return createGlobalPlaceNavigation(new MoreLoginInformationPlace());
}
@@ -433,6 +433,8 @@ public class UserService implements TakedownNoticeService {
try {
if (stringValue != null) {
callback.accept(new MillisecondsTimePoint(Long.parseLong(stringValue)));
} else {
callback.accept(null);
}
} catch (Exception e) {
logger.warning("Error parsing localstore value '" + stringValue + "'");