mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 06:25:14 +01:00
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
09f95ec069
commit
ae721a8b53
1 changed files with 1 additions and 1 deletions
|
@ -750,7 +750,7 @@ public class MessagesController extends BaseController implements NotificationCe
|
|||
preloadFeaturedStickers = mainPreferences.getBoolean("preloadFeaturedStickers", false);
|
||||
youtubePipType = mainPreferences.getString("youtubePipType", "disabled");
|
||||
keepAliveService = mainPreferences.getBoolean("keepAliveService", false);
|
||||
backgroundConnection = 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 a new issue