mirror of
https://github.com/go-shiori/shiori.git
synced 2025-01-15 04:17:43 +08:00
fix: use correct endpoint in rename tags operation (#868)
This commit is contained in:
parent
21c95ac70d
commit
5a166906db
1 changed files with 1 additions and 1 deletions
|
@ -953,7 +953,7 @@ export default {
|
|||
};
|
||||
|
||||
this.dialog.loading = true;
|
||||
fetch(new URL("api/tag", document.baseURI), {
|
||||
fetch(new URL("api/tags", document.baseURI), {
|
||||
method: "PUT",
|
||||
body: JSON.stringify(newData),
|
||||
headers: {
|
||||
|
|
Loading…
Reference in a new issue