Merge pull request #281 from shikorism/fix/279-unauthorized-ajax-call

非ログイン状態でいいねしようとした時にログインを促す
This commit is contained in:
shibafu 2019-10-11 00:31:24 +09:00 committed by GitHub
commit 7b8811b894
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,6 +85,9 @@ $(() => {
if (xhr.status === 409) { if (xhr.status === 409) {
callback(JSON.parse(xhr.responseText)); callback(JSON.parse(xhr.responseText));
return; return;
} else if (xhr.status === 401) {
alert('いいねするためにはログインしてください。');
return;
} }
console.error(xhr); console.error(xhr);