Skip to content

Commit a978957

Browse files
committed
update changelog.txt
1 parent 9e0d6b0 commit a978957

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

app/src/main/java/com/wmods/wppenhacer/xposed/core/devkit/UnobfuscatorCache.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,11 @@ public UnobfuscatorCache(Application app, XSharedPreferences shared) {
4242
long version = mShared.getLong("version", 0);
4343
long currentVersion = mApp.getPackageManager().getPackageInfo(mApp.getPackageName(), 0).getLongVersionCode();
4444
long savedUpdateTime = mShared.getLong("updateTime", 0);
45-
long lastUpdateTime = mApp.getPackageManager().getPackageInfo(BuildConfig.APPLICATION_ID, 0).lastUpdateTime;
45+
long lastUpdateTime = savedUpdateTime;
46+
try {
47+
lastUpdateTime = mApp.getPackageManager().getPackageInfo(BuildConfig.APPLICATION_ID, 0).lastUpdateTime;
48+
} catch (Exception ignored) {
49+
}
4650
if (version != currentVersion || savedUpdateTime != lastUpdateTime) {
4751
mShared.edit().clear().commit();
4852
mShared.edit().putLong("version", currentVersion).commit();

changelog.txt

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,4 @@
1-
[ATENÇÃO]
2-
* This is a test version, I'm changing the bridge to service and testing the battery optimization features to open WhatsApp faster
1+
[WHATSAPP]
2+
* Fixed the lag when starting WhatsApp (When updating WAE it will still take a few seconds to save the cache of obfuscated strings, but after that the subsequent openings will be much faster).
33

4-
[WA ENHANCER]
5-
* Update translations
6-
* Centralized home page
7-
8-
[BUBBLE COLORS]
9-
* Fix colors
10-
11-
[SYSTEM FRAMEWORK]
12-
* Works with Hide My App list (reboot device after update)
134

0 commit comments

Comments
 (0)