瀏覽代碼

Merge branch 'dev/v1.1.18.2_wh' of BaseService/jyMicroservices into hotfix/v1.1.18.2

王浩 2 年之前
父節點
當前提交
21af6b73c4

+ 1 - 1
jyBXSubscribe/api/internal/logic/byPushHistoryLogic.go

@@ -51,7 +51,7 @@ func (l *ByPushHistoryLogic) ByPushHistory(req *types.SubscribeReq) (resp *types
 		}
 		}
 		if len(matchkeysArr) != 0 {
 		if len(matchkeysArr) != 0 {
 			matchkeys = strings.Join(matchkeysArr, ",")
 			matchkeys = strings.Join(matchkeysArr, ",")
-			strings.ReplaceAll(matchkeys, " ", ",")
+			matchkeys = strings.ReplaceAll(matchkeys, " ", ",")
 		}
 		}
 	} else {
 	} else {
 		matchkeys = req.KeyWords
 		matchkeys = req.KeyWords

+ 1 - 1
jyBXSubscribe/api/internal/logic/subscribeListLogic.go

@@ -53,7 +53,7 @@ func (l *SubscribeListLogic) SubscribeList(req *types.SubscribeReq) (resp *types
 		}
 		}
 		if len(matchkeysArr) != 0 {
 		if len(matchkeysArr) != 0 {
 			matchkeys = strings.Join(matchkeysArr, ",")
 			matchkeys = strings.Join(matchkeysArr, ",")
-			strings.ReplaceAll(matchkeys, " ", ",")
+			matchkeys = strings.ReplaceAll(matchkeys, " ", ",")
 		}
 		}
 	} else {
 	} else {
 		matchkeys = req.KeyWords
 		matchkeys = req.KeyWords