base controller: Fix fetcher creation by passing auth info

This commit is contained in:
Hylke Bons 2016-04-09 07:36:40 -07:00
parent f9a82ef70d
commit 454a839570

View file

@ -562,7 +562,8 @@ namespace SparkleShare {
try {
this.fetcher = (BaseFetcher) Activator.CreateInstance (
Type.GetType ("Sparkles." + backend + "." + backend + "Fetcher, Sparkles." + backend), info);
Type.GetType ("Sparkles." + backend + "." + backend + "Fetcher, Sparkles." + backend),
new object [] { info, UserAuthenticationInfo});
} catch (Exception e) {
Logger.LogInfo ("Controller",