diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2023-02-16 15:13:53 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2023-02-16 15:13:53 +0700 |
| commit | dc44e019784e18f34bb84a86640793efd3daca17 (patch) | |
| tree | 2e4fba233e7762e1d8e2f780ef63adfdb175e6ae /indoteknik_custom | |
| parent | aeb50c4ede78b7f101c5ccf7a63a2fb81ec3aae0 (diff) | |
bug fix wati
Diffstat (limited to 'indoteknik_custom')
| -rw-r--r-- | indoteknik_custom/models/wati.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indoteknik_custom/models/wati.py b/indoteknik_custom/models/wati.py index 0a4da9e1..37c97f59 100644 --- a/indoteknik_custom/models/wati.py +++ b/indoteknik_custom/models/wati.py @@ -28,7 +28,7 @@ class WatiNotification(models.Model): if current_lead: # must append internal notes as a reply here - current_lead.description = current_lead.description + "|" +str(text) + current_lead.description = str(current_lead.description) + "|" +str(text) wati.is_lead = True else: # create new leads |
