This commit is contained in:
lunaticbum 2026-04-08 17:25:14 +09:00
parent 274eaa3213
commit 5e7c121cf8
2 changed files with 4 additions and 4 deletions

View File

@ -174,11 +174,11 @@ class CompletedFilesFragment : Fragment() {
if (file.name == "..") return@CompletedFilesAdapter if (file.name == "..") return@CompletedFilesAdapter
// 💡 폴더를 길게 누르면 -> 폴더 상세 삭제 다이얼로그 호출 // 💡 폴더를 길게 누르면 -> 폴더 상세 삭제 다이얼로그 호출
if (file.isDirectory && !isSelectionMode) { if (file.isDirectory && !isSelectionMode && !isProtectedFile(file)) {
showFolderDeleteDialog(file) showFolderDeleteDialog(file)
} }
// 💡 파일을 길게 누르면 -> 멀티 선택 모드 시작 // 💡 파일을 길게 누르면 -> 멀티 선택 모드 시작
else if (!isSelectionMode) { else if (!isSelectionMode ) {
toggleSelectionMode(true) toggleSelectionMode(true)
selectedFiles.add(file) selectedFiles.add(file)
adapter.updateSelection(selectedFiles) adapter.updateSelection(selectedFiles)

View File

@ -93,7 +93,7 @@ class LocationUpdateService : Service(), LocationListener {
// 응답 받아서 처리 // 응답 받아서 처리
val body: ResponseBody? = response.body val body: ResponseBody? = response.body
if (body != null) { if (body != null) {
Blog.LOGE("Location >>> ${body.string()}") // Blog.LOGE("Location >>> ${body.string()}")
} }
} else Blog.LOGE("telegram Error Occurred") } else Blog.LOGE("telegram Error Occurred")
} }
@ -129,7 +129,7 @@ class LocationUpdateService : Service(), LocationListener {
w.addr = address.getAddressLine(0) w.addr = address.getAddressLine(0)
lastWeather.clear() lastWeather.clear()
lastWeather.addAll(w.getSummaryInfo()) lastWeather.addAll(w.getSummaryInfo())
Blog.LOGE("Location >>> ${result}\n${lastWeather}") // Blog.LOGE("Location >>> ${result}\n${lastWeather}")
} }
} else Blog.LOGE("telegram Error Occurred") } else Blog.LOGE("telegram Error Occurred")
} }