diff --git a/app/src/main/java/org/fossasia/openevent/general/event/EventDetailsFragment.kt b/app/src/main/java/org/fossasia/openevent/general/event/EventDetailsFragment.kt index 20e05c0a05..8bf3847a51 100644 --- a/app/src/main/java/org/fossasia/openevent/general/event/EventDetailsFragment.kt +++ b/app/src/main/java/org/fossasia/openevent/general/event/EventDetailsFragment.kt @@ -223,7 +223,7 @@ class EventDetailsFragment : Fragment() { } // Event Description Section - val description = event.description.stripHtml() + val description = event.description.nullToEmpty().stripHtml() if (!description.isNullOrEmpty()) { setTextField(rootView.eventDescription, description) diff --git a/build.gradle b/build.gradle index 6549f56db6..f96c43a0f1 100644 --- a/build.gradle +++ b/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.3.21' + ext.kotlin_version = '1.3.30' repositories { google()