From 10fa6ec449cec113c783f9f8c8cf81de2e1f7620 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Sat, 13 Apr 2019 01:09:28 +0530 Subject: [PATCH 1/2] chore(deps): bump kotlin_version from 1.3.21 to 1.3.30 (#1593) Bumps `kotlin_version` from 1.3.21 to 1.3.30. Updates `kotlin-gradle-plugin` from 1.3.21 to 1.3.30 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.3.30/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.3.21...v1.3.30) Updates `kotlin-stdlib-jdk7` from 1.3.21 to 1.3.30 - [Release notes](https://github.com/JetBrains/kotlin/releases) - [Changelog](https://github.com/JetBrains/kotlin/blob/v1.3.30/ChangeLog.md) - [Commits](https://github.com/JetBrains/kotlin/compare/v1.3.21...v1.3.30) Signed-off-by: dependabot[bot] --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() From 2df871ec25f5183f3c610fcf3cef47d25039f81c Mon Sep 17 00:00:00 2001 From: Pulkit Aggarwal Date: Sun, 14 Apr 2019 18:36:24 +0530 Subject: [PATCH 2/2] fix: convert null description to empty description (#1605) --- .../fossasia/openevent/general/event/EventDetailsFragment.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 27c026a358..6653f9a57c 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 @@ -205,7 +205,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)