Fix the "allow notifs" setting

This commit is contained in:
Paul Schneider 2016-10-05 18:45:03 +02:00
commit 6cee01512e

View file

@ -46,6 +46,17 @@ namespace BookAStar.ViewModels
}
}
public bool ReceivePushNotifications
{
get
{
return MainSettings.PushNotifications;
}
set
{
MainSettings.PushNotifications = value;
}
}
private long queryCount;
private User user;