401 Unauthorizedはよくないね
This commit is contained in:
parent
92847fefe0
commit
5642e73391
5
resources/assets/js/app.js
vendored
5
resources/assets/js/app.js
vendored
@ -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);
|
||||||
@ -98,4 +101,4 @@ $(() => {
|
|||||||
$this.siblings(".card-link").removeClass("card-spoiler");
|
$this.siblings(".card-link").removeClass("card-spoiler");
|
||||||
$this.remove();
|
$this.remove();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user