Browse Source

Update StoryController, add postgres bug fix

Daniel Supernault 3 years ago
parent
commit
ddf41dc347
1 changed files with 2 additions and 0 deletions
  1. 2 0
      app/Http/Controllers/StoryController.php

+ 2 - 0
app/Http/Controllers/StoryController.php

@@ -46,6 +46,8 @@ class StoryController extends StoryComposeController
 					$r  = new \StdClass;
 					$r  = new \StdClass;
 					$r->id = $s->id;
 					$r->id = $s->id;
 					$r->profile_id = $s->profile_id;
 					$r->profile_id = $s->profile_id;
+					$r->type = $s->type;
+					$r->path = $s->path;
 					return $r;
 					return $r;
 				})
 				})
 				->unique('profile_id');
 				->unique('profile_id');