Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Avoid backup cache crash #3

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
tleyden wants to merge 1 commit into binaryscraping:main
base: main
Choose a base branch
Loading
from tleyden:avoid_backup_cache_error

Conversation

Copy link

@tleyden tleyden commented Feb 8, 2025

Fix for #2

Lmk if this looks good, I still need to clean up formatting (4 space vs 2 space indent)

Copy link

I had the same issue and implemented a similar fix (see below). Tested your changes -> LGTM

 func backupCache() {
 queue.sync(flags: .barrier) {
 do {
 let encoder = JSONEncoder()
 let dateFormatter = ISO8601DateFormatter()
 dateFormatter.formatOptions = [.withInternetDateTime]
 encoder.dateEncodingStrategy = .custom { date, encoder in
 var container = encoder.singleValueContainer()
 try container.encode(dateFormatter.string(from: date))
 }
 let data = try encoder.encode(cachedLogs)
 try data.write(to: LogsCache.fileURL())
 self.cachedLogs = []
 } catch {
 if isDebug {
 print("Error saving Logs cache.")
 }
 }
 }
 }
tleyden reacted with thumbs up emoji

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Reviewers
No reviews
Assignees
No one assigned
Labels
None yet
Projects
None yet
Milestone
No milestone
Development

Successfully merging this pull request may close these issues.

AltStyle によって変換されたページ (->オリジナル) /