5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-19 15:49:36 +00:00

Update GetFileLinks to API_V4

This commit is contained in:
Wim 2018-04-21 20:49:44 +02:00
parent 99ce68e9ba
commit c3174f4de9

View File

@ -574,7 +574,7 @@ func (m *MMClient) GetFileLinks(filenames []string) []string {
res, resp := m.Client.GetFileLink(f) res, resp := m.Client.GetFileLink(f)
if resp.Error != nil { if resp.Error != nil {
// public links is probably disabled, create the link ourselves // public links is probably disabled, create the link ourselves
output = append(output, uriScheme+m.Credentials.Server+model.API_URL_SUFFIX_V3+"/files/"+f+"/get") output = append(output, uriScheme+m.Credentials.Server+model.API_URL_SUFFIX_V4+"/files/"+f)
continue continue
} }
output = append(output, res) output = append(output, res)