refactor: auth magic

This commit is contained in:
Xmader 2020-11-09 14:10:01 -05:00
parent 4de6343cb8
commit 45645fe630
No known key found for this signature in database
GPG Key ID: A20B97FB9EB730E4
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ let magic: Promise<string> | string = new Promise((resolve) => {
const fn = r.a
t.d(r, 'a', () => {
return (...args) => {
if (typeof magic !== 'string') {
if (magic instanceof Promise) {
magic = args[MAGIC_ARG_INDEX]
resolve(magic)
}
@ -48,7 +48,7 @@ export const getFileUrl = async (type: FileType, index = 0): Promise<string> =>
const fn: (id: number, index: number, cb: (url: string) => any, magic: string) => string = fileUrlModule.a
if (typeof magic !== 'string') {
if (magic instanceof Promise) {
// force to retrieve the MAGIC
const el = document.querySelectorAll('.SD7H- > button')[3] as HTMLButtonElement
el.click()