We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 694924f commit cf75a80Copy full SHA for cf75a80
AvaGui/ViewModels/FolderTreeViewModel.cs
@@ -22,7 +22,11 @@ public class FolderTreeViewModel : ReactiveObject
22
23
[Reactive]
24
public string CurrentLocalDirectory { get; set; } = string.Empty;
25
- public string CurrentDirectory => SelectedTabIndex == 0 ? CurrentLocalDirectory : "<online>";
+ public string CurrentDirectory => SelectedTabIndex == 0
26
+ ? CurrentLocalDirectory
27
+ : Model.Settings.UseHttps
28
+ ? Model.Settings.ServerAddressHttps
29
+ : Model.Settings.ServerAddressHttp;
30
31
32
public FileSystemItemBase? CurrentlySelectedObject { get; set; }
0 commit comments