Skip to content
This repository has been archived by the owner on Aug 24, 2022. It is now read-only.

Commit

Permalink
Hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
nlwstein committed Oct 29, 2014
1 parent aa08f6b commit fbc2ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soundcloud-sync/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public bool Download(String username, String type, String path)
Collection = GetUserContent(GetUserID(username), type);

/* Let's concatenate our path. */
if (path == null) { path = Assembly.GetAssembly(typeof(App)).Location; }
if (path == null) { path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location); }
path = Path.Combine(path,username,type);

/* Download the collection! */
Expand Down

0 comments on commit fbc2ba2

Please sign in to comment.