@bobfrankston/rmfmail 1.0.480 → 1.0.481

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/client/app.js CHANGED
@@ -2886,10 +2886,14 @@ async function openAboutDialog() {
2886
2886
  rows.push(["Cloud path", `My Drive/${storage.cloudPath}/`]);
2887
2887
  if (storage.mode)
2888
2888
  rows.push(["Storage mode", storage.mode]);
2889
- if (storage.folderName)
2889
+ if (storage.folderPath)
2890
+ rows.push(["Drive path", storage.folderPath]);
2891
+ else if (storage.folderName)
2890
2892
  rows.push(["Drive folder", storage.folderName]);
2891
2893
  if (storage.folderId)
2892
2894
  rows.push(["Drive folderId", storage.folderId]);
2895
+ if (storage.folderOwner)
2896
+ rows.push(["Drive owner", storage.folderOwner]);
2893
2897
  if (storage.configDir)
2894
2898
  rows.push(["Config dir", storage.configDir]);
2895
2899
  rows.push(["Accounts", String((accounts || []).length)]);