@@ -165,7 +165,7 @@
methods: {
fetchNotifications() {
- axios.get('/api/v1/notifications?pg=true')
+ axios.get('/api/pixelfed/v1/notifications?pg=true')
.then(res => {
let data = res.data.filter(n => {
if(n.type == 'share' && !n.status) {
@@ -591,7 +591,7 @@
fetchProfile() {
- axios.get('/api/v1/accounts/verify_credentials').then(res => {
+ axios.get('/api/pixelfed/v1/accounts/verify_credentials').then(res => {
this.profile = res.data;
if(this.profile.is_admin == true) {
this.modes.mod = true;