summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/shortcuts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/shortcuts.c b/apps/shortcuts.c
index 4833b65c74..0c5e285885 100644
--- a/apps/shortcuts.c
+++ b/apps/shortcuts.c
@@ -427,7 +427,7 @@ static const char * shortcut_menu_get_name(int selected_item, void * data,
427 /* No translation support as only soft_shutdown has LANG_SHUTDOWN defined */ 427 /* No translation support as only soft_shutdown has LANG_SHUTDOWN defined */
428 return type_strings[SHORTCUT_SHUTDOWN]; 428 return type_strings[SHORTCUT_SHUTDOWN];
429 } 429 }
430 else if (sc->type == SHORTCUT_BROWSER && (sc->u.path)[0] != '\0') 430 else if (sc->type == SHORTCUT_BROWSER && sc->name[0] == '\0' && (sc->u.path)[0] != '\0')
431 { 431 {
432 char* pos; 432 char* pos;
433 if (path_basename(sc->u.path, (const char **)&pos) > 0) 433 if (path_basename(sc->u.path, (const char **)&pos) > 0)