generate better storage ids

This commit is contained in:
Robin Appelman 2014-06-12 16:15:01 +02:00 committed by Bjoern Schiessle
parent ce0aa7d4a8
commit c8c8106168
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class Storage extends DAV implements ISharedStorage {
* @return string * @return string
*/ */
public function getId() { public function getId() {
return 'shared::' . md5($this->user . '@' . $this->remote); return 'shared::' . md5($this->token . '@' . $this->remote);
} }
public function getCache($path = '') { public function getCache($path = '') {