Recent changes made in this commit introduced a string formatting bug.
The modified string
content = fmt.Sprintf("%s\n---\nForwarded from %s", originName, content)
resulted in the following formatted string:
Du Rove's Channel
---
Forwarded from MEMO_CONTENT
I've fixed it by reverting the changes to the original state, as it was in my PR prior to the recent commit. I've also removed a colon according to the formatting changes were made.
The corrected string now is:
content = fmt.Sprintf("Forwarded from %s\n%s", originName, content)
Recent changes made in this commit introduced a string formatting bug.
The modified string
resulted in the following formatted string:
I've fixed it by reverting the changes to the original state, as it was in my PR prior to the recent commit. I've also removed a colon according to the formatting changes were made.
The corrected string now is:
An example of the formatted string is: