From 46ed6e3828816dd27de46643ff8451387e816936 Mon Sep 17 00:00:00 2001 From: FE Date: Wed, 3 Sep 2025 09:28:00 +0900 Subject: [PATCH] =?UTF-8?q?flutter=20update=20=EB=A1=9C=20=EC=9D=B8?= =?UTF-8?q?=ED=95=9C=20=EC=97=90=EB=9F=AC=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/oto/commands/ftp/ftp.dart | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/oto/commands/ftp/ftp.dart b/lib/oto/commands/ftp/ftp.dart index e71f757..24aa909 100644 --- a/lib/oto/commands/ftp/ftp.dart +++ b/lib/oto/commands/ftp/ftp.dart @@ -168,16 +168,16 @@ class FTP { for (var item in list) { FileType? type; switch (item.type) { - case FTPEntryType.DIR: + case FTPEntryType.dir: type = FileType.directory; break; - case FTPEntryType.FILE: + case FTPEntryType.file: type = FileType.file; break; - case FTPEntryType.LINK: + case FTPEntryType.link: // TODO: Handle this case. break; - case FTPEntryType.UNKNOWN: + case FTPEntryType.unknown: // TODO: Handle this case. break; }