mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
generate better storage ids
This commit is contained in:
parent
ce0aa7d4a8
commit
c8c8106168
1 changed files with 1 additions and 1 deletions
2
apps/files_sharing/lib/external/storage.php
vendored
2
apps/files_sharing/lib/external/storage.php
vendored
|
|
@ -82,7 +82,7 @@ class Storage extends DAV implements ISharedStorage {
|
|||
* @return string
|
||||
*/
|
||||
public function getId() {
|
||||
return 'shared::' . md5($this->user . '@' . $this->remote);
|
||||
return 'shared::' . md5($this->token . '@' . $this->remote);
|
||||
}
|
||||
|
||||
public function getCache($path = '') {
|
||||
|
|
|
|||
Loading…
Reference in a new issue