diff --git a/Plugins/SaveToRedux/SaveToRedux.plugin.js b/Plugins/SaveToRedux/SaveToRedux.plugin.js old mode 100755 new mode 100644 index 0701a55..d9a4f2d --- a/Plugins/SaveToRedux/SaveToRedux.plugin.js +++ b/Plugins/SaveToRedux/SaveToRedux.plugin.js @@ -400,7 +400,7 @@ var SaveToRedux = (() => { .pipe(FsModule.createWriteStream(path)) .on('finish', () => { if (openOnSave) openItem(path); - BdApi.showToast('Saved!', { type: 'success' }); + BdApi.showToast(`Saved to '${path}'`, { type: 'success' }); }) .on('error', e => BdApi.showToast(`Failed to save! ${e}`, { type: 'error', timeout: 10000 })); } else if (res.statusCode == 404) BdApi.showToast('Image does not exist!', { type: 'error' });