fix backgroundConnection pref read from keepAliveService
`backgroundConnection` pref is read from `keepAliveService` but written to `backgroundConnection` which seems incorrect
This commit is contained in:
parent
99c7ba1302
commit
302e658b0e
@ -847,8 +847,8 @@ public class MessagesController extends BaseController implements NotificationCe
|
||||
canRevokePmInbox = mainPreferences.getBoolean("canRevokePmInbox", canRevokePmInbox);
|
||||
preloadFeaturedStickers = mainPreferences.getBoolean("preloadFeaturedStickers", false);
|
||||
youtubePipType = mainPreferences.getString("youtubePipType", "disabled");
|
||||
keepAliveService = mainPreferences.getBoolean("keepAliveService", true);
|
||||
backgroundConnection = mainPreferences.getBoolean("keepAliveService", true);
|
||||
keepAliveService = mainPreferences.getBoolean("keepAliveService", false);
|
||||
backgroundConnection = mainPreferences.getBoolean("backgroundConnection", false);
|
||||
promoDialogId = mainPreferences.getLong("proxy_dialog", 0);
|
||||
nextPromoInfoCheckTime = mainPreferences.getInt("nextPromoInfoCheckTime", 0);
|
||||
promoDialogType = mainPreferences.getInt("promo_dialog_type", 0);
|
||||
|
Loading…
Reference in New Issue
Block a user