Merge pull request #44 from wunter8/471-remove-timestamp-from-message-to-clipboard
fixes binwiederhier/ntfy#471
This commit is contained in:
commit
7fc3cbc52a
1 changed files with 1 additions and 2 deletions
|
@ -472,9 +472,8 @@ fun ensureSafeNewFile(dir: File, name: String): File {
|
|||
|
||||
fun copyToClipboard(context: Context, notification: Notification) {
|
||||
val message = decodeMessage(notification)
|
||||
val text = message + "\n\n" + formatDateShort(notification.timestamp)
|
||||
val clipboard = context.getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager
|
||||
val clip = ClipData.newPlainText("notification message", text)
|
||||
val clip = ClipData.newPlainText("notification message", message)
|
||||
clipboard.setPrimaryClip(clip)
|
||||
Toast
|
||||
.makeText(context, context.getString(R.string.detail_copied_to_clipboard_message), Toast.LENGTH_LONG)
|
||||
|
|
Loading…
Reference in a new issue