feat: support reading recordings, address some warnings

This commit is contained in:
2026-05-27 01:56:47 -04:00
parent e72633f26a
commit 23f86ace3b
6 changed files with 97 additions and 79 deletions

View File

@@ -49,7 +49,7 @@ impl RecordingDataManager {
.and_then(|entry| {
std::future::ready(
take(entry.name())
.map(|(day, rest)| day)
.map(|(day, _rest)| day)
.context(ParseSnafu),
)
}))