|
...
|
...
|
@@ -41,8 +41,12 @@ class TaskLogic extends BaseLogic |
|
|
|
if($info === false){
|
|
|
|
$this->fail('error');
|
|
|
|
}
|
|
|
|
$info = $this->getFileUrl($info);
|
|
|
|
$info['follow'] = $this->getFileUrl($info['follow']);
|
|
|
|
if(!empty($info['attachment'])){
|
|
|
|
$info = $this->getFileUrl($info);
|
|
|
|
}
|
|
|
|
if(!empty($info['follow']['attachment'])){
|
|
|
|
$info['follow'] = $this->getFileUrl($info['follow']);
|
|
|
|
}
|
|
|
|
return $this->success($info);
|
|
|
|
}
|
|
|
|
|
...
|
...
|
|