Skip to content

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
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

tleyden
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)

@david9472
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.")
        }
      }
    }
  }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants