mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Fix incorrect mailto format #1521
This commit is contained in:
parent
71718db8f0
commit
90a3d2b62a
5 changed files with 42 additions and 9 deletions
|
|
@ -1,4 +1,6 @@
|
|||
|
||||
import window from 'window';
|
||||
import $ from '$';
|
||||
import ko from 'ko';
|
||||
import {settingsGet} from 'Storage/Settings';
|
||||
import {AbstractAppStore} from 'Stores/AbstractApp';
|
||||
|
|
@ -27,13 +29,9 @@ class AppAdminStore extends AbstractAppStore
|
|||
this.useLocalProxyForExternalImages(!!settingsGet('UseLocalProxyForExternalImages'));
|
||||
|
||||
if (settingsGet('Auth')) {
|
||||
this.checkDataFolder();
|
||||
$.get('./data/VERSION?' + window.Math.random()).then(() => this.dataFolderAccess(true));
|
||||
}
|
||||
}
|
||||
|
||||
checkDataFolder() {
|
||||
$.get('./data/VERSION?' + window.Math.random()).then((value) => this.dataFolderAccess(true));
|
||||
}
|
||||
}
|
||||
|
||||
export default new AppAdminStore();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue