diff --git a/core/routes.php b/core/routes.php
index 4163bdcd5bcbc2835146c7684064869c39ce7a5c..5009243d59f6e5f229bb467f7d261958c927325a 100644
--- a/core/routes.php
+++ b/core/routes.php
@@ -40,7 +40,7 @@ $this->create('core_tags_favorite', '/tags/{type}/favorite/{id}/')
 	->post()
 	->action('OC\Core\Tags\Controller', 'favorite')
 	->requirements(array('type', 'id'));
-$this->create('core_tags_unfavorite', '/tags/{type}/infavorite/{id}/')
+$this->create('core_tags_unfavorite', '/tags/{type}/unfavorite/{id}/')
 	->post()
 	->action('OC\Core\Tags\Controller', 'unFavorite')
 	->requirements(array('type', 'id'));