This commit is contained in:
苏尹岚
2021-04-19 15:50:50 +08:00
parent 89417e6f6d
commit 14f7fc7828
4 changed files with 918 additions and 947 deletions

View File

@@ -1923,7 +1923,10 @@ func TempJob() (err error) {
}
func GetUnionActList(ctx *jxcontext.Context, vendorID, actType int) (actList []*partner.ActivityList, err error) {
return partner.GetHandler(vendorID).GetUnionActList(ctx, actType)
if handler := partner.GetHandler(vendorID); handler != nil {
actList, err = handler.GetUnionActList(ctx, actType)
}
return actList, err
}
func ShareUnionLink(ctx *jxcontext.Context, vendorID, linkType int) (link string, err error) {