fix remote home button

Signed-off-by: Sahil Yeole <sahilyeole93@gmail.com>
This commit is contained in:
Sahil Yeole 2023-10-19 04:29:51 +05:30
parent d7036aae48
commit 9acddede65

View File

@ -375,8 +375,14 @@ class FileController {
history.add(directory.value.path);
}
void goToHomeDirectory() {
openDirectory(homePath);
void goToHomeDirectory() async {
if (isLocal) {
openDirectory(homePath);
return;
}
final homeDir = (await bind.sessionGetPeerOption(
sessionId: sessionId, name: "remote_home_dir"));
openDirectory(homeDir);
}
void goBack() {
@ -403,7 +409,7 @@ class FileController {
}
// TODO deprecated this
void initDirAndHome(Map<String, dynamic> evt) {
void initDirAndHome(Map<String, dynamic> evt) async {
try {
final fd = FileDirectory.fromJson(jsonDecode(evt['value']));
fd.format(options.value.isWindows, sort: sortBy.value);
@ -423,6 +429,14 @@ class FileController {
}
} else if (options.value.home.isEmpty) {
options.value.home = fd.path;
final homeDir = ( await bind.sessionGetPeerOption(
sessionId: sessionId, name: "remote_home_dir"));
if (homeDir.isEmpty){
bind.sessionPeerOption(
sessionId: sessionId, name: "remote_home_dir", value: fd.path);
}
debugPrint("init remote home: ${fd.path}");
directory.value = fd;
}