Skip to content
Snippets Groups Projects
Commit 229b22c4 authored by Taras's avatar Taras
Browse files

Remove * from edit text message

parent 9ab2033d
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ interface RelationService { ...@@ -102,7 +102,7 @@ interface RelationService {
newBodyText: CharSequence, newBodyText: CharSequence,
newFormattedBodyText: CharSequence? = null, newFormattedBodyText: CharSequence? = null,
newBodyAutoMarkdown: Boolean, newBodyAutoMarkdown: Boolean,
compatibilityBodyText: String = "* $newBodyText" compatibilityBodyText: String = newBodyText.toString()
): Cancelable ): Cancelable
/** /**
...@@ -119,7 +119,7 @@ interface RelationService { ...@@ -119,7 +119,7 @@ interface RelationService {
originalTimelineEvent: TimelineEvent, originalTimelineEvent: TimelineEvent,
newBodyText: String, newBodyText: String,
newFormattedBodyText: String? = null, newFormattedBodyText: String? = null,
compatibilityBodyText: String = "* $newBodyText" compatibilityBodyText: String = newBodyText
): Cancelable ): Cancelable
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment