Skip to content

Commit

Permalink
Reorder providers
Browse files Browse the repository at this point in the history
  • Loading branch information
nemunaire committed Nov 17, 2024
1 parent 8a67000 commit d26b788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions internal/integrations/integrations.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ func GetIntegrationProvider(storer storage.UserStorer, uid, integrationid string
continue
}
switch intg.Provider {
case webdavProvider:
return newWebDav(intg), nil
case dropboxProvider:
return newDropbox(intg), nil
case localfsProvider:
return newLocalFS(intg), nil
case webdavProvider:
return newWebDav(intg), nil
}
}
return nil, fmt.Errorf("integration not found or no implmentation (only webdav) %s", integrationid)
Expand Down

0 comments on commit d26b788

Please sign in to comment.