Only run EndSubscribe when it is really a sub

This commit is contained in:
Mikael Nordfeldth 2014-05-06 00:22:02 +02:00
parent 10cbf8c45e
commit 848d513706

View File

@ -124,8 +124,10 @@ class Subscription extends Managed_DataObject
} }
} }
if ($sub instanceof Subscription) { // i.e. not SubscriptionQueue
Event::handle('EndSubscribe', array($subscriber, $other)); Event::handle('EndSubscribe', array($subscriber, $other));
} }
}
return $sub; return $sub;
} }