diff --git a/README.md b/README.md
index 3553c5a..c61ddf6 100644
--- a/README.md
+++ b/README.md
@@ -12,8 +12,11 @@ sudo apt-get install python3.8 wget python3-setproctitle python3-gi ffmpegthumbn
# TODO
- Add simpleish plugin system to run bash/python scripts.
+- Add simpleish preview plugin for various file types.
+- Add simpleish file chmod, chown, stats, etc plugin for file management.
- Add simpleish search plugin to do recursive search and show.
- Add simpleish bulk-renamer.
+- Add a basic favorites manager plugin.
# Images
diff --git a/src/versions/solarfm-0.0.1/SolarFM/solarfm/context/controller.py b/src/versions/solarfm-0.0.1/SolarFM/solarfm/context/controller.py
index 2dbf22d..fc7fa7c 100644
--- a/src/versions/solarfm-0.0.1/SolarFM/solarfm/context/controller.py
+++ b/src/versions/solarfm-0.0.1/SolarFM/solarfm/context/controller.py
@@ -102,7 +102,7 @@ class Controller(UIMixin, KeyboardSignalsMixin, IPCSignalsMixin, ExceptionHookMi
save_load_dialog.set_current_name("session.json")
response = save_load_dialog.run()
if response == Gtk.ResponseType.OK:
- if action == "save_session":
+ if action == "save_session_as":
path = f"{save_load_dialog.get_current_folder()}/{save_load_dialog.get_current_name()}"
self.fm_controller.save_state(path)
elif action == "load_session":