Fix timeline quota reached pug filename

This commit is contained in:
Cadence Ember 2020-07-31 03:43:01 +12:00
parent d4f9af44b0
commit 53e43ab033
No known key found for this signature in database
GPG Key ID: 128B99B1B74A6412
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ module.exports = [
} else if (error === constants.symbols.INSTAGRAM_DEMANDS_LOGIN || error === constants.symbols.RATE_LIMITED) {
return render(503, "pug/fragments/timeline_loading_blocked.pug")
} else if (error === constants.symbols.QUOTA_REACHED) {
return render(429, "pug/fragments/quota_reached.pug")
return render(429, "pug/fragments/timeline_quota_reached.pug")
} else {
throw error
}