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.isDirectory && !isSelectionMode) {
if (file.isDirectory && !isSelectionMode && !isProtectedFile(file)) {
showFolderDeleteDialog(file)
}
// 💡 파일을 길게 누르면 -> 멀티 선택 모드 시작
else if (!isSelectionMode) {
else if (!isSelectionMode ) {
toggleSelectionMode(true)
selectedFiles.add(file)
adapter.updateSelection(selectedFiles)

View File

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