Procházet zdrojové kódy

Merge pull request #143 from dutchcoders/FIX-GDRIVE-FILENAME-ESCAPING

Escape quoting chars in filename for gdrive
tags/v1.0.0
Andrea Spacca před 5 roky
committed by GitHub
rodič
revize
a640bcf707
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: 4AEE18F83AFDEB23
1 změnil soubory, kde provedl 4 přidání a 0 odebrání
  1. +4
    -0
      server/storage.go

+ 4
- 0
server/storage.go Zobrazit soubor

@@ -21,6 +21,7 @@ import (
"google.golang.org/api/googleapi"
"io/ioutil"
"net/http"
"strings"
)

type Storage interface {
@@ -391,6 +392,9 @@ func (s *GDrive) list(nextPageToken string, q string) (*drive.FileList, error) {
}

func (s *GDrive) findId(filename string, token string) (string, error) {
filename = strings.Replace(filename, `'`, `\'`, -1)
filename = strings.Replace(filename, `"`, `\"`, -1)

fileId, tokenId, nextPageToken := "", "", ""

q := fmt.Sprintf("'%s' in parents and name='%s' and mimeType='%s' and trashed=false", s.rootId, token, GDriveDirectoryMimeType)


Načítá se…
Zrušit
Uložit