From 8793acfb4e751cfdb464d259de45249cec5d6398 Mon Sep 17 00:00:00 2001 From: Michael Gapczynski Date: Tue, 4 Jun 2013 18:07:14 -0400 Subject: [PATCH] substr storage id to prevent problems with storing the change id in appconfig --- apps/files_external/lib/google.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/google.php b/apps/files_external/lib/google.php index 678799545d..18ea5fca16 100644 --- a/apps/files_external/lib/google.php +++ b/apps/files_external/lib/google.php @@ -55,7 +55,7 @@ class Google extends \OC\Files\Storage\Common { $this->service = new \Google_DriveService($client); $this->root = isset($params['root']) ? $params['root'] : ''; $token = json_decode($params['token'], true); - $this->id = 'google::'.$params['client_id'].$token['created']; + $this->id = 'google::'.substr($params['client_id'], 0, 30).$token['created']; } else { throw new \Exception('Creating \OC\Files\Storage\Google storage failed'); }