Index: channels/dnd.py ================================================================== --- channels/dnd.py +++ channels/dnd.py @@ -312,15 +312,16 @@ # Insert and update view if rows: cn.insert_rows(rows, y) - cn.save() + if conf.auto_save_stations or cn.module == "bookmarks": + cn.save() # Show streamedit window if title is empty if not len(rows[0].get("title", "")): self.parent.configwin.load_config(rows[0], "streamedit_") self.parent.win_streamedit.show() else: self.parent.status("Unsupported station format. Not imported.")