File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
src/main/kotlin/net/tcgdex/sdk/models Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ data class Card internal constructor(
171171 * @return the full card URL with the extension and quality
172172 */
173173 fun getImageUrl (quality : Quality , extension : Extension ): String {
174- return " ${this .image} /${quality.value} .${extension} "
174+ return " ${this .image} /${quality.value} .${extension.value } "
175175 }
176176
177177 /* *
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ open class SerieResume internal constructor(
3737 if (this .logo == null ) {
3838 return null
3939 }
40- return " ${this .logo} .${extension} "
40+ return " ${this .logo} .${extension.value } "
4141 }
4242
4343 /* *
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ data class SetResume internal constructor(
4747 if (this .logo == null ) {
4848 return null
4949 }
50- return " ${this .logo} .${extension} "
50+ return " ${this .logo} .${extension.value } "
5151 }
5252
5353 /* *
@@ -71,7 +71,7 @@ data class SetResume internal constructor(
7171 if (this .symbol == null ) {
7272 return null
7373 }
74- return " ${this .symbol} .${extension} "
74+ return " ${this .symbol} .${extension.value } "
7575 }
7676
7777 /* *
You can’t perform that action at this time.
0 commit comments