Skip to content

Correct duplicate HTTP 403 handler intended for 404 response #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/jekyll/strapi4/strapihttp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ def strapi_request(url)
raise "The Strapi server sent a error with the following status: 401. Please make sure that your credentials are correct or that you have access to the API."
elsif response.code == "403"
raise "The Strapi server sent a error with the following status: 403. Please provide STRAPI_TOKEN or allow public access for find and findOne actions."
elsif response.code == "403"
elsif response.code == "404"
raise "The Strapi server sent a error with the following status: 404. Please make sure that name of your collection is correct."
else
raise "The Strapi server sent a error with the following status: #{response.code}. Please make sure it is correctly running."
end
end
end