buildstring
This commit is contained in:
parent
9d9fc3fbf2
commit
05f92c6b59
1 changed files with 6 additions and 1 deletions
|
@ -42,7 +42,12 @@ suspend fun ntfyMsg(
|
|||
click: String,
|
||||
) {
|
||||
val message: HttpResponse =
|
||||
client.post("https://" + endpoint) {
|
||||
client.post(
|
||||
buildString {
|
||||
append("https://")
|
||||
append(endpoint)
|
||||
},
|
||||
) {
|
||||
headers {
|
||||
append("Title", title)
|
||||
append("Attach", attach)
|
||||
|
|
Loading…
Reference in a new issue