X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/6235f8f993d9a97f08d00ce578c86da020d7e978..86e7b4599dfaf730706abc3407c57ef2d98534fc:/Entity/Dance.php?ds=inline

diff --git a/Entity/Dance.php b/Entity/Dance.php
index 8d83062..796b81f 100644
--- a/Entity/Dance.php
+++ b/Entity/Dance.php
@@ -210,7 +210,7 @@ class Dance {
 	 */
 	public function addUser(User $user): Dance {
 		//Add from owning side
-		$user->addSubscriber($this);
+		$user->addDance($this);
 
 		$this->users[] = $user;
 
@@ -225,12 +225,12 @@ class Dance {
 	 * @return bool
 	 */
 	public function removeUser(User $user): bool {
-		if (!$this->users->contains($user)) {
+		if (!$this->dances->contains($user)) {
 			return true;
 		}
 
 		//Remove from owning side
-		$user->removeSubscriber($this);
+		$user->removeDance($this);
 
 		return $this->users->removeElement($user);
 	}