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 {
newBodyText: CharSequence,
newFormattedBodyText: CharSequence? = null,
newBodyAutoMarkdown: Boolean,
compatibilityBodyText: String = "* $newBodyText"
compatibilityBodyText: String = newBodyText.toString()
): Cancelable
/**
......@@ -119,7 +119,7 @@ interface RelationService {
originalTimelineEvent: TimelineEvent,
newBodyText: String,
newFormattedBodyText: String? = null,
compatibilityBodyText: String = "* $newBodyText"
compatibilityBodyText: String = newBodyText
): 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