Merge pull request #241 from nextcloud/bugfix/json

Make sure axios is not transforming the response of the file fetch to json
This commit is contained in:
Julius Härtl 2019-08-14 18:28:49 +02:00 коммит произвёл GitHub
Родитель c2c181cc0f 12548a9e4d
Коммит c225cca4bd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -132,6 +132,7 @@ class SyncService {
_fetchDocument() {
return axios.get(
endpointUrl('session/fetch', !!this.options.shareToken), {
transformResponse: [(data) => data],
params: {
documentId: this.document.id,
sessionId: this.session.id,