mirror of
https://git.sr.ht/~cadence/NewLeaf
synced 2024-11-14 03:57:31 +00:00
Fix past text conversion for past streams
This commit is contained in:
parent
b36edbf3ae
commit
6c49edf3ae
10
index.py
10
index.py
@ -170,8 +170,14 @@ def uncompress_counter(text):
|
||||
|
||||
def past_text_to_time(text):
|
||||
words = text.split(" ")
|
||||
assert len(words) == 3, "3 words"
|
||||
assert words[2] == "ago", 'ends with "ago"'
|
||||
if words[0] == "Streamed":
|
||||
words = words[1:]
|
||||
if len(words) != 3:
|
||||
print(words)
|
||||
raise Exception("Past text is not 3 words")
|
||||
if words[2] != "ago":
|
||||
print(words)
|
||||
raise Exception('Past text does not end with "ago"')
|
||||
number = int(words[0])
|
||||
unit = words[1][:2]
|
||||
multiplier = 1
|
||||
|
Loading…
Reference in New Issue
Block a user