From 53e43ab03305039e27b23f8c52bcf9d34b0a0fc9 Mon Sep 17 00:00:00 2001 From: Cadence Ember Date: Fri, 31 Jul 2020 03:43:01 +1200 Subject: [PATCH] Fix timeline quota reached pug filename --- src/site/api/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/site/api/routes.js b/src/site/api/routes.js index 71751e3..47bc031 100644 --- a/src/site/api/routes.js +++ b/src/site/api/routes.js @@ -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 }