Compare commits

...

4 Commits

Author SHA1 Message Date
Dom
ab71599d47
Merge d35b485bda into 76a0636a34 2025-12-08 17:57:52 -05:00
blacktwin
76a0636a34
Merge pull request #396 from assaflerman/master
Added additional new line in the summary edit to fully hide spoilers
2025-11-05 00:30:40 -05:00
Dom
d35b485bda
Update README.md
fix typo - hiaku to haiku
2025-03-27 06:23:03 -04:00
assaflerman
82dd5c94bb
Added additional new line in the edit summary to fully hide spoilers in hide_episode_spoilers.py 2023-08-25 19:16:34 +03:00
2 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ Scripts pulled from my gist profile.
<tr>
<td><a href="https://gist.github.com/blacktwin/4ccb79c7d01a95176b8e88bf4890cd2b"><img src="https://img.shields.io/badge/gist-original-green.svg"></a></td>
<td><a href="../master/fun/plexapi_haiku.py">plexapi_haiku</a></td>
<td>Create a hiaku from titles found in Plex.</td>
<td>Create a haiku from titles found in Plex.</td>
</tr>
</table>
</details>

View File

@ -114,7 +114,7 @@ def modify_episode_artwork(plex, rating_key, image=None, blur=None, summary_pref
if summary_prefix and not episode.summary.startswith(summary_prefix):
# Use a zero-width space (\u200b) for blank lines
episode.editSummary(summary_prefix + '\n\u200b\n' + episode.summary)
episode.editSummary(summary_prefix + '\n\u200b\n\u200b\n' + episode.summary)
# Refresh metadata for the episode
episode.refresh()