Skip to content

Commit

Permalink
Fix API route error
Browse files Browse the repository at this point in the history
  • Loading branch information
iigmir committed Nov 13, 2023
1 parent e577f1f commit 42cef20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/article.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ArticleTagsApp {
if( in_development ) {
return "/docs/assets/stub-data-api.json";
}
return `https://iigmir.serv00.net/api/blog-metadata.php/${this.id}`;
return `https://iigmir.serv00.net/api/blog-metadata/${this.id}`;
}
/**
* Datas from AJAX result. See `responsed_source_data` for details.
Expand Down

0 comments on commit 42cef20

Please sign in to comment.