mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
Fix error when migrateMemberScrappedDocuments() returns int
This commit is contained in:
parent
f0b84faf03
commit
1bb0123e59
1 changed files with 1 additions and 1 deletions
|
|
@ -640,7 +640,7 @@ class MemberView extends Member
|
|||
if(!count($folders))
|
||||
{
|
||||
$output = MemberController::getInstance()->migrateMemberScrappedDocuments($logged_info->member_srl);
|
||||
if($output && !$output->toBool())
|
||||
if ($output instanceof BaseObject && !$output->toBool())
|
||||
{
|
||||
return $output;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue