mirror of
https://github.com/wrwrabbit/Partisan-Telegram-Android.git
synced 2026-04-29 04:29:33 +00:00
Update to 5.10.0
This commit is contained in:
parent
9f48ec7ea2
commit
53e04b55fb
252 changed files with 11412 additions and 5153 deletions
|
|
@ -32,7 +32,6 @@ public class UserConfig extends BaseController {
|
|||
public int lastBroadcastId = -1;
|
||||
public int contactsSavedCount;
|
||||
public int clientUserId;
|
||||
public boolean blockedUsersLoaded;
|
||||
public int lastContactsSyncTime;
|
||||
public int lastHintsSyncTime;
|
||||
public boolean draftsLoaded;
|
||||
|
|
@ -118,7 +117,6 @@ public class UserConfig extends BaseController {
|
|||
editor.putInt("lastSendMessageId", lastSendMessageId);
|
||||
editor.putInt("contactsSavedCount", contactsSavedCount);
|
||||
editor.putInt("lastBroadcastId", lastBroadcastId);
|
||||
editor.putBoolean("blockedUsersLoaded", blockedUsersLoaded);
|
||||
editor.putInt("lastContactsSyncTime", lastContactsSyncTime);
|
||||
editor.putInt("lastHintsSyncTime", lastHintsSyncTime);
|
||||
editor.putBoolean("draftsLoaded", draftsLoaded);
|
||||
|
|
@ -255,7 +253,6 @@ public class UserConfig extends BaseController {
|
|||
lastSendMessageId = preferences.getInt("lastSendMessageId", -210000);
|
||||
contactsSavedCount = preferences.getInt("contactsSavedCount", 0);
|
||||
lastBroadcastId = preferences.getInt("lastBroadcastId", -1);
|
||||
blockedUsersLoaded = preferences.getBoolean("blockedUsersLoaded", false);
|
||||
lastContactsSyncTime = preferences.getInt("lastContactsSyncTime", (int) (System.currentTimeMillis() / 1000) - 23 * 60 * 60);
|
||||
lastHintsSyncTime = preferences.getInt("lastHintsSyncTime", (int) (System.currentTimeMillis() / 1000) - 25 * 60 * 60);
|
||||
draftsLoaded = preferences.getBoolean("draftsLoaded", false);
|
||||
|
|
@ -399,7 +396,6 @@ public class UserConfig extends BaseController {
|
|||
contactsSavedCount = 0;
|
||||
lastSendMessageId = -210000;
|
||||
lastBroadcastId = -1;
|
||||
blockedUsersLoaded = false;
|
||||
notificationsSettingsLoaded = false;
|
||||
notificationsSignUpSettingsLoaded = false;
|
||||
migrateOffsetId = -1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue