A different error message on mobile when the File Explorer view is not available (e.g. is deferred).
This commit is contained in:
parent
b0592e471d
commit
10e0ae096f
|
@ -305,7 +305,12 @@ export default class CustomSortPlugin
|
||||||
this.customSortAppliedAtLeastOnce = false
|
this.customSortAppliedAtLeastOnce = false
|
||||||
fileExplorer.view.requestSort();
|
fileExplorer.view.requestSort();
|
||||||
} else {
|
} else {
|
||||||
this.showNotice('Custom sort File Explorer view problem. See console for detailed message.');
|
if (Platform.isDesktop) {
|
||||||
|
this.showNotice('Custom sort File Explorer view problem. See console for detailed message.')
|
||||||
|
} else { // No console access on mobile
|
||||||
|
this.showNotice(`Custom sort File Explorer view problem - is it visible?`
|
||||||
|
+ ` Can't apply custom sorting when the File Explorer was not displayed at least once.`)
|
||||||
|
}
|
||||||
setIcon(this.ribbonIconEl, ICON_SORT_SUSPENDED_GENERAL_ERROR)
|
setIcon(this.ribbonIconEl, ICON_SORT_SUSPENDED_GENERAL_ERROR)
|
||||||
this.settings.suspended = true
|
this.settings.suspended = true
|
||||||
this.saveSettings()
|
this.saveSettings()
|
||||||
|
|
Loading…
Reference in New Issue