Daniel Supernault 1 rok pred
rodič
commit
3a27e637f8
1 zmenil súbory, kde vykonal 2 pridanie a 15 odobranie
  1. 2 15
      resources/assets/components/Post.vue

+ 2 - 15
resources/assets/components/Post.vue

@@ -171,7 +171,7 @@
 			}
 		},
 
-		beforeMount() {
+		created() {
 			this.init();
 		},
 
@@ -181,20 +181,7 @@
 
 		methods: {
 			init() {
-				if(this.cachedStatus && this.cachedProfile) {
-					this.post = this.cachedStatus;
-					this.media = this.post.media_attachments;
-					this.profile = this.post.account;
-					this.user = this.cachedProfile;
-					if(this.post.in_reply_to_id) {
-						this.fetchReply();
-					} else {
-						this.isReply = false;
-						this.fetchRelationship();
-					}
-				} else {
-					this.fetchSelf();
-				}
+				this.fetchSelf();
 			},
 
 			fetchSelf() {