Skip to content

Commit 9b4a1d8

Browse files
Change imageUrlHash type from Int to Long
1 parent 604fc8a commit 9b4a1d8

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

podcastindex-sdk/src/commonMain/kotlin/com/mr3y/podcastindex/model/PodcastFeed.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public class PodcastFeed(
5151
@SerialName(value = "crawlErrors") public val crawlErrors: Int,
5252
@SerialName(value = "parseErrors") public val parseErrors: Int,
5353
@SerialName(value = "locked") @Serializable(LockedSerializer::class) public val locked: Locked,
54-
@SerialName(value = "imageUrlHash") public val imageUrlHash: Int,
54+
@SerialName(value = "imageUrlHash") public val imageUrlHash: Long,
5555
@SerialName(value = "newestItemPubdate") @Serializable(InstantSerializer::class) public val newestItemPubdate: Instant? = null,
5656
)
5757

0 commit comments

Comments
 (0)