fix: remove deprecated js calls
This commit is contained in:
Родитель
7afa4fdfc8
Коммит
94fbce7f53
|
@ -1,9 +1,9 @@
|
|||
declare var OC: {
|
||||
generateUrl(string, any?): string,
|
||||
PasswordConfirmation: any,
|
||||
getCurrentUser(): {uid: string, displayName: string}
|
||||
};
|
||||
declare var oc_requesttoken: string;
|
||||
declare var oc_current_user: string;
|
||||
declare var JSXC: any;
|
||||
declare var OJSXC_CONFIG: {
|
||||
defaultLoginFormEnable: boolean,
|
||||
|
|
|
@ -72,7 +72,7 @@ export default class Bootstrap {
|
|||
};
|
||||
|
||||
if (this.jsxc.numberOfCachedAccounts === 0) {
|
||||
if (oc_current_user) {
|
||||
if (OC.getCurrentUser().uid) {
|
||||
this.jsxc.start();
|
||||
}
|
||||
|
||||
|
|
|
@ -4,4 +4,4 @@ export const SERVER_TYPE = {
|
|||
MANAGED: 2
|
||||
};
|
||||
|
||||
export const DEPENDENCIES = ['JSXC', 'oc_config', 'oc_appswebroots', 'OC'];
|
||||
export const DEPENDENCIES = ['JSXC', 'OC'];
|
||||
|
|
Загрузка…
Ссылка в новой задаче