diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-12-23 11:35:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-23 11:35:18 +0100 |
commit | fbab9c0b879ccd81c68e3ed3889530de21c59c3c (patch) | |
tree | 71a76edfaf32e094072806c8ce8379cc162e4dd5 | |
parent | 6d96b3478498cc55865b32d91d8eb3019d44a538 (diff) | |
parent | ac96554aaaa5a85af992d050e97254ddec8fb902 (diff) | |
download | nextcloud-server-fbab9c0b879ccd81c68e3ed3889530de21c59c3c.tar.gz nextcloud-server-fbab9c0b879ccd81c68e3ed3889530de21c59c3c.zip |
Merge pull request #18546 from nextcloud/bugfix/appstore-update
Fix broken upgrade caused by undefined method call
-rw-r--r-- | lib/private/App/AppStore/Fetcher/AppFetcher.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/private/App/AppStore/Fetcher/AppFetcher.php b/lib/private/App/AppStore/Fetcher/AppFetcher.php index d97949421d8..456b07190fb 100644 --- a/lib/private/App/AppStore/Fetcher/AppFetcher.php +++ b/lib/private/App/AppStore/Fetcher/AppFetcher.php @@ -151,6 +151,5 @@ class AppFetcher extends Fetcher { parent::setVersion($version); $this->fileName = $fileName; $this->ignoreMaxVersion = $ignoreMaxVersion; - $this->setEndpoint(); } } |