Skip to content

Commit

Permalink
Fix #7213.
Browse files Browse the repository at this point in the history
Former-commit-id: e38b8a02a9d3d5590190ff812fe69fb9a45483b2
  • Loading branch information
dkocher committed May 10, 2013
1 parent 4702ae7 commit 436639a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion source/ch/cyberduck/ui/cocoa/MainController.java
Original file line number Diff line number Diff line change
Expand Up @@ -1134,7 +1134,7 @@ public void serviceUploadFileUrl_(final NSPasteboard pboard, String userData) {
/**
* Saved browsers
*/
private HistoryCollection sessions = new HistoryCollection(
private AbstractHostCollection sessions = new FolderBookmarkCollection(
LocalFactory.createLocal(Preferences.instance().getProperty("application.support.path"), "Sessions"));

/**
Expand Down
2 changes: 1 addition & 1 deletion source/ch/cyberduck/ui/controller/MainController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ internal class MainController : WindowsFormsApplicationBase
/// <summary>
/// Saved browsers
/// </summary>
private readonly HistoryCollection _sessions = new HistoryCollection(
private readonly AbstractHostCollection _sessions = new FolderBookmarkCollection(
LocalFactory.createLocal(Preferences.instance().getProperty("application.support.path"), "Sessions"));

/// <summary>
Expand Down

0 comments on commit 436639a

Please sign in to comment.