Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
load backends from separate dlls
  • Loading branch information
shish committed Feb 28, 2012
1 parent 390f31e commit 51b0160
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SparkleShare/SparkleControllerBase.cs
Expand Up @@ -614,7 +614,7 @@ private void AddRepository (string folder_path)

try {
repo = (SparkleRepoBase) Activator.CreateInstance (
Type.GetType ("SparkleLib.SparkleRepo" + backend + ", SparkleLib"),
Type.GetType ("SparkleLib.SparkleRepo" + backend + ", SparkleLib." + backend),
folder_path
);

Expand Down Expand Up @@ -1015,7 +1015,7 @@ public void FetchFolder (string server, string remote_folder, string announcemen

try {
this.fetcher = (SparkleFetcherBase) Activator.CreateInstance (
Type.GetType ("SparkleLib.SparkleFetcher" + backend + ", SparkleLib"),
Type.GetType ("SparkleLib.SparkleFetcher" + backend + ", SparkleLib." + backend),
server,
remote_folder,
tmp_folder
Expand Down

0 comments on commit 51b0160

Please sign in to comment.