remove home dir peer option

Signed-off-by: Sahil Yeole <sahilyeole93@gmail.com>
This commit is contained in:
Sahil Yeole 2023-10-19 23:45:48 +05:30
parent 9acddede65
commit e08da096dd

View File

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