Commit 3bc7a7840929bf760c2a6952f7f3fbbb1bcd9ace
1 parent
1f5af5ef
修改判断条件
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/cnlive/shenhe/serviceImpl/VideosServiceImpl.java
| ... | ... | @@ -484,7 +484,7 @@ public class VideosServiceImpl { |
| 484 | 484 | // 机审 |
| 485 | 485 | shenheType = CommonConst.AUDIT_TYPE_MACHANE; |
| 486 | 486 | // 如果是人工审 |
| 487 | - if (shType.equals(CommonConst.AUDIT_TYPE_USER)) { | |
| 487 | + if (CommonConst.AUDIT_TYPE_USER.equals(shType)) { | |
| 488 | 488 | shenheType = shType; |
| 489 | 489 | } |
| 490 | 490 | // 如果栏目是朋友圈 | ... | ... |