Skip to content

Commit

Permalink
reach:fix .
Browse files Browse the repository at this point in the history
  • Loading branch information
ljl committed Oct 28, 2023
1 parent 5c45537 commit c212ed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion support/reach/src/serv/message_template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ impl
if let Some(kind) = filter.kind {
query.and_where(message_template::Column::Kind.eq(kind));
}
if let Some(rel_reach_verify_code_strategy_id) = filter.rel_reach_verify_code_strategy_id {
if let Some(rel_reach_verify_code_strategy_id) = filter.rel_reach_verify_code_strategy_id.clone() {
query.and_where(message_template::Column::RelReachVerifyCodeStrategyId.eq(rel_reach_verify_code_strategy_id));
}
query.with_filter(Self::get_table_name(), &filter.base_filter, is_detail, true, ctx);
Expand Down

0 comments on commit c212ed7

Please sign in to comment.