From c05301d4ed03c5b574c15311a41ce25637d49d1c Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Sun, 25 Feb 2018 20:08:31 +0100 Subject: [PATCH] Time default is now -1 for quotes --- pages/quote/quote.pixy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/quote/quote.pixy b/pages/quote/quote.pixy index 6e9c05a8..5a456e90 100644 --- a/pages/quote/quote.pixy +++ b/pages/quote/quote.pixy @@ -43,7 +43,7 @@ component QuoteInformation(quote *arn.Quote, user *arn.User) td.quote-info-key Episode: td.quote-info-value= quote.EpisodeNumber - if quote.Time != 0 + if quote.Time != -1 tr.mountable(data-mountable-type="info") td.anime-info-key Time: td.anime-info-value= strconv.Itoa(quote.Time) + " min"