From 5ce465a9c9a8cceb368ecc7539f57edc509ed05d Mon Sep 17 00:00:00 2001 From: haider khalid Date: Sun, 6 Nov 2022 13:44:26 +0300 Subject: [PATCH] fix sms helper bug does not working properly --- src/pm-qrcode.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pm-qrcode.vue b/src/pm-qrcode.vue index 150ebba..a85a9da 100644 --- a/src/pm-qrcode.vue +++ b/src/pm-qrcode.vue @@ -123,7 +123,7 @@ export default { this.textToQR = `tel:${this.value || 0}`; break; case "sms": - this.textToQR = `sms:${this.value.number || 0}${ + this.textToQR = `SMSTO:${this.value.number || 0}${ this.value.message ? ":" + this.value.message : "" }`; break;