Skip to content

Commit 06a0fbf

Browse files
committed
Fix compilation error
1 parent 19c48a4 commit 06a0fbf

File tree

1 file changed

+1
-1
lines changed
  • modalbottomsheetdialogfragment/src/main/java/com/commit451/modalbottomsheetdialogfragment

1 file changed

+1
-1
lines changed

modalbottomsheetdialogfragment/src/main/java/com/commit451/modalbottomsheetdialogfragment/OptionRequest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class OptionRequest(val id: Int, val title: String, @DrawableRes val icon: Int?)
2323

2424
constructor(source: Parcel) : this(
2525
source.readInt(),
26-
source.readString(),
26+
source.readString() ?: "",
2727
source.readValue(Int::class.java.classLoader) as Int?
2828
)
2929

0 commit comments

Comments
 (0)