diff --git a/apps/remoteStorage/appinfo/info.xml b/apps/remoteStorage/appinfo/info.xml
index 5f061da258c241a0167bc172c72e06ba89299fbb..1fc146aac73ee00a18ca77f3c863c6f5d48d05f2 100644
--- a/apps/remoteStorage/appinfo/info.xml
+++ b/apps/remoteStorage/appinfo/info.xml
@@ -3,7 +3,7 @@
 	<id>remoteStorage</id>
 	<name>remoteStorage compatibility</name>
 	<description>Enables your users to use ownCloud as their remote storage for unhosted applications.</description>
-	<version>0.3</version>
+	<version>0.4</version>
 	<licence>AGPL or MIT</licence>
 	<author>Michiel de Jong</author>
 	<require>2</require>
diff --git a/apps/remoteStorage/lib_remoteStorage.php b/apps/remoteStorage/lib_remoteStorage.php
index 4f5c96645095a543e4d6c1b70095a0432ad10749..a9b73516aade2c850f70ac5196d8c48dc06ceac2 100644
--- a/apps/remoteStorage/lib_remoteStorage.php
+++ b/apps/remoteStorage/lib_remoteStorage.php
@@ -41,7 +41,7 @@ class OC_remoteStorage {
 		$token=uniqid();
 		OC_Util::setupFS(OC_User::getUser());
 		self::addToken($token, $appUrl, $categories);
-		foreach($categories as $category) {
+		foreach(explode(',', $categories) as $category) {
 			//TODO: input checking on $category
 			$scopePathParts = array('remoteStorage', $category);
 			for($i=0;$i<=count($scopePathParts);$i++){