summaryrefslogtreecommitdiff
path: root/apps/filetypes.c
diff options
context:
space:
mode:
authorChristian Soffke <christian.soffke@gmail.com>2022-11-19 16:15:22 +0100
committerChristian Soffke <christian.soffke@gmail.com>2022-11-19 17:08:39 +0100
commitdcde5aa89daaa9906b04770ab18def9c146474c4 (patch)
tree41d54e5956638a61c58697e0c097733c1c5b6684 /apps/filetypes.c
parentb3a464c9d1f70a377a6edf2b7058da0748e842e5 (diff)
downloadrockbox-dcde5aa89daaa9906b04770ab18def9c146474c4.tar.gz
rockbox-dcde5aa89daaa9906b04770ab18def9c146474c4.zip
Database & Playlist Viewer: Fix return to WPS from plugin
After calling up PictureFlow from the database or from the Playlist Viewer, you would not be returned to the WPS as would be expected when picking a new song, selecting "Go to WPS" or pressing the WPS action button. Change-Id: I902ac9185ebe092d0c4c08804db0a813a32cc39c
Diffstat (limited to 'apps/filetypes.c')
-rw-r--r--apps/filetypes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c
index 02d2af282e..24dc0f2e4d 100644
--- a/apps/filetypes.c
+++ b/apps/filetypes.c
@@ -618,7 +618,7 @@ int filetype_list_viewers(const char* current_file)
618 int i = viewers[info.selection]; 618 int i = viewers[info.selection];
619 snprintf(plugin, MAX_PATH, "%s/%s." ROCK_EXTENSION, 619 snprintf(plugin, MAX_PATH, "%s/%s." ROCK_EXTENSION,
620 PLUGIN_DIR, filetypes[i].plugin); 620 PLUGIN_DIR, filetypes[i].plugin);
621 plugin_load(plugin, current_file); 621 ret = plugin_load(plugin, current_file);
622 } 622 }
623 return ret; 623 return ret;
624} 624}