소스 검색

通道设置,添加通道大于零判断

tanghongbin 5 년 전
부모
커밋
9e5653bbc4
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      Controller/UidSetController.py

+ 4 - 0
Controller/UidSetController.py

@@ -357,6 +357,10 @@ class UidSetView(View):
         userID = tko.userID
         if userID is None:
             return response.json(309)
+
+        channel = int(channel)
+        if channel < 1:
+            return response.json(444, 'channel')
         try:
             redisObj = RedisObject(db=8)
             redisObj.del_data(key='uid_qs_' + userID)