瀏覽代碼

Update components, fix api endpoints. Fixes #3138

Daniel Supernault 3 年之前
父節點
當前提交
e724633e0f
共有 2 個文件被更改,包括 2 次插入2 次删除
  1. 1 1
      resources/assets/js/components/NotificationCard.vue
  2. 1 1
      resources/assets/js/components/Timeline.vue

+ 1 - 1
resources/assets/js/components/NotificationCard.vue

@@ -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) {

+ 1 - 1
resources/assets/js/components/Timeline.vue

@@ -591,7 +591,7 @@
 
 		methods: {
 			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;