Kaynağa Gözat

fix username not updating when switching OneDrive accounts (#2538)

Shlomo Zalman Heigh 4 yıl önce
ebeveyn
işleme
90589c3f1c
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      packages/@uppy/provider-views/src/index.js

+ 1 - 1
packages/@uppy/provider-views/src/index.js

@@ -147,7 +147,7 @@ module.exports = class ProviderView {
           updatedDirectories = state.directories.concat([{ id, title: name }])
         }
 
-        this.username = this.username ? this.username : res.username
+        this.username = res.username || this.username
         this._updateFilesAndFolders(res, files, folders)
         this.plugin.setPluginState({ directories: updatedDirectories })
       },