Skip to content

Commit 0185164

Browse files
authored
menu: Fix logError call (#13583)
1 parent 812b0aa commit 0185164

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • files/usr/share/cinnamon/applets/menu@cinnamon.org

files/usr/share/cinnamon/applets/menu@cinnamon.org/applet.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -843,7 +843,7 @@ class PathContextMenuItem extends ContextMenuItem {
843843
_openContainingFolderViaMimeApp() {
844844
let app = Gio.AppInfo.get_default_for_type("inode/directory", true);
845845
if (app === null) {
846-
log.logError(`Could not open containing folder via MIME app: No associated file manager found`);
846+
global.logError("Could not open containing folder via MIME app: No associated file manager found");
847847
return;
848848
}
849849
let file = Gio.file_new_for_uri(this._button.uri);

0 commit comments

Comments
 (0)