소스 검색

Update Follower model

Daniel Supernault 6 년 전
부모
커밋
8c12151859
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/Follower.php

+ 1 - 1
app/Follower.php

@@ -26,7 +26,7 @@ class Follower extends Model
 
     public function permalink($append = null)
     {
-        $path = $this->actor->permalink("/follow/{$this->id}{$append}");
+        $path = $this->actor->permalink("#accepts/follows/{$this->id}{$append}");
         return url($path);
     }