Skip to content

Commit

Permalink
Fix crash caused by status widget and typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
twodoorcoupe committed Mar 11, 2024
1 parent f9001b6 commit 4ac3233
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion plugins/post_tagging_actions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@ def stop(self):
action_queue.join()
action_queue.put(PriorityAction(-1, -1, None))
self.keep_updating = False
self.update_widget.join()
if self.update_widget.is_alive():
self.update_widget.join()
self.worker.join()


Expand Down
2 changes: 1 addition & 1 deletion plugins/post_tagging_actions/docs/guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To run the actions,
- Then highlight all the items you want the actions to run for.
- Right click, go to plugins, then click "Run Actions for highlighted albums/tracks".
### Adding an action
In the options page, you will find "Post Tagging Actions" under "Plguins". You will be greeted by this:
In the options page, you will find "Post Tagging Actions" under "Plugins". You will be greeted by this:

![options](options.png)

Expand Down

0 comments on commit 4ac3233

Please sign in to comment.