File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " fortuna"
3- version = " 9.1.0 "
3+ version = " 9.1.1 "
44edition = " 2021"
55
66[lib ]
Original file line number Diff line number Diff line change @@ -538,9 +538,9 @@ impl<'a> RequestQueryBuilder<'a> {
538538 sql. push_str ( & format ! ( " AND state = ${param_count}" ) ) ;
539539
540540 if * state == StateTag :: Completed {
541- sql. push_str ( " AND NOT callback_failed" ) ;
541+ sql. push_str ( " AND callback_failed = 0 " ) ;
542542 } else if * state == StateTag :: CallbackErrored {
543- sql. push_str ( " AND callback_failed" ) ;
543+ sql. push_str ( " AND callback_failed = 1 " ) ;
544544 }
545545 }
546546
@@ -627,9 +627,9 @@ impl<'a> RequestQueryBuilder<'a> {
627627 sql. push_str ( & format ! ( " AND state = ${param_count}" ) ) ;
628628
629629 if * state == StateTag :: Completed {
630- sql. push_str ( " AND NOT callback_failed" ) ;
630+ sql. push_str ( " AND callback_failed = 0 " ) ;
631631 } else if * state == StateTag :: CallbackErrored {
632- sql. push_str ( " AND callback_failed" ) ;
632+ sql. push_str ( " AND callback_failed = 1 " ) ;
633633 }
634634 }
635635
You can’t perform that action at this time.
0 commit comments