Skip to content

Commit

Permalink
[Mediaserver] Circumvent Jackson bug where class requires an empty co…
Browse files Browse the repository at this point in the history
…nstructor even if the object gets used in an empty list
  • Loading branch information
Schaka committed Jun 14, 2024
1 parent a3ddcb7 commit e01830d
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package com.github.schaka.janitorr.mediaserver.library

data class PathInfo(
class PathInfo(
val Path: String?
)
) {
constructor(): this(null)
}

0 comments on commit e01830d

Please sign in to comment.