Przeglądaj źródła

短信api

master
huangjiajun 1 rok temu
rodzic
commit
29e9a508a0
1 zmienionych plików z 2 dodań i 2 usunięć
  1. +2
    -2
      sms/api.go

+ 2
- 2
sms/api.go Wyświetl plik

@@ -47,8 +47,8 @@ func SmsSend(engine *xorm.Engine, args map[string]interface{}) error {
if err != nil {
return err
}
platformCount := gjson.Get(send, "data.smsNum").String()
if zhios_third_party_utils.StrToInt(platformCount) < count*int(contentLen) {
platformCount := gjson.Get(send, "data.smsNum").Int()
if platformCount < count*int(contentLen) {
return errors.New("平台短信不足")
}
}


Ładowanie…
Anuluj
Zapisz