Fix incorrect mailto format #1521

This commit is contained in:
RainLoop 2017-10-06 21:52:00 +03:00
parent 71718db8f0
commit 90a3d2b62a
5 changed files with 42 additions and 9 deletions

View file

@ -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();