Skip to content

Commit

Permalink
fix: use native ISO 8601 date formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
uhthomas committed Dec 18, 2023
1 parent 337faf3 commit af4e262
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 46 deletions.
3 changes: 2 additions & 1 deletion Sources/JellyfinClient.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ public final class JellyfinClient {
configuration.delegate = self
configuration.sessionDelegate = sessionDelegate

let isoDateFormatter: DateFormatter = OpenISO8601DateFormatter()
let isoDateFormatter: DateFormatter = ISO8601DateFormatter()
isoDateFormatter.formatOptions = .withFractionalSeconds

let decoder = JSONDecoder()
decoder.dateDecodingStrategy = .formatted(isoDateFormatter)
Expand Down
45 changes: 0 additions & 45 deletions Sources/OpenISO8601Formatter.swift

This file was deleted.

0 comments on commit af4e262

Please sign in to comment.