Compare commits

...

3 Commits

Author SHA1 Message Date
Ammar Ahmed
0be9a03feb mobile: fix crash during backup 2024-04-30 00:16:30 +05:00
Ammar Ahmed
fe91ef79a0 global: update logo 2024-04-29 13:24:54 +05:00
Abdullah Atta
583d585b2f desktop: re-enable arm64 builds 2024-04-29 11:53:09 +05:00
3 changed files with 5 additions and 3 deletions

View File

@@ -135,13 +135,15 @@
{
"target": "nsis",
"arch": [
"x64"
"x64",
"arm64"
]
},
{
"target": "portable",
"arch": [
"x64"
"x64",
"arm64"
]
}
],

View File

@@ -252,7 +252,7 @@ async function run(progress = false, context) {
} catch (e) {
ToastManager.error(e, "Backup failed", context || "global");
if (e.message.includes("android.net.Uri") && androidBackupDirectory) {
if (e?.message?.includes("android.net.Uri") && androidBackupDirectory) {
SettingsService.setProperty("backupDirectoryAndroid", null);
return run(progress, context);
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 8.6 KiB