Updated dependencies
This commit is contained in:
@ -23,7 +23,7 @@ func (nyaa *nyaaAnimeProvider) GetLink(anime *Anime, additionalSearchTerm string
|
||||
subs := ""
|
||||
|
||||
nyaaSuffix := fmt.Sprintf("?f=0&c=1_2&q=%s+%s+%s&s=seeders&o=desc", searchTitle, quality, subs)
|
||||
nyaaSuffix = strings.Replace(nyaaSuffix, "++", "+", -1)
|
||||
nyaaSuffix = strings.ReplaceAll(nyaaSuffix, "++", "+")
|
||||
|
||||
return "https://nyaa.si/" + nyaaSuffix
|
||||
}
|
||||
|
@ -87,7 +87,7 @@ func AccountNick(nick string) string {
|
||||
|
||||
// PostText fixes common mistakes in post texts.
|
||||
func PostText(text string) string {
|
||||
text = strings.Replace(text, "http://", "https://", -1)
|
||||
text = strings.ReplaceAll(text, "http://", "https://")
|
||||
text = strings.TrimSpace(text)
|
||||
return text
|
||||
}
|
||||
|
Reference in New Issue
Block a user