Browse Source

Ease fortune length (mystery why Kodi truncates)

master
The Dod 3 years ago
parent
commit
16efcf9aa9
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      fortunefeed.py

+ 1
- 1
fortunefeed.py View File

@@ -9,7 +9,7 @@ FEED_LINK = 'https://linux.die.net/man/6/fortune'
9 9
 FEED_TITLE = 'Fortune'
10 10
 FEED_DESCRIPTION = 'Random, hopefully interesting, adages'
11 11
 NUM_ITEMS = 1 # Kodi would choke on more :(
12
-MAX_LENGTH = 42 # This much Kodi seems to handle
12
+MAX_LENGTH = 55 # This much Kodi seems to handle [usually]
13 13
 
14 14
 rss_items = []
15 15
 

Loading…
Cancel
Save