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 1
1
[package ]
2
2
name = " fortuna"
3
- version = " 9.1.0 "
3
+ version = " 9.1.1 "
4
4
edition = " 2021"
5
5
6
6
[lib ]
Original file line number Diff line number Diff line change @@ -538,9 +538,9 @@ impl<'a> RequestQueryBuilder<'a> {
538
538
sql. push_str ( & format ! ( " AND state = ${param_count}" ) ) ;
539
539
540
540
if * state == StateTag :: Completed {
541
- sql. push_str ( " AND NOT callback_failed" ) ;
541
+ sql. push_str ( " AND callback_failed = 0 " ) ;
542
542
} else if * state == StateTag :: CallbackErrored {
543
- sql. push_str ( " AND callback_failed" ) ;
543
+ sql. push_str ( " AND callback_failed = 1 " ) ;
544
544
}
545
545
}
546
546
@@ -627,9 +627,9 @@ impl<'a> RequestQueryBuilder<'a> {
627
627
sql. push_str ( & format ! ( " AND state = ${param_count}" ) ) ;
628
628
629
629
if * state == StateTag :: Completed {
630
- sql. push_str ( " AND NOT callback_failed" ) ;
630
+ sql. push_str ( " AND callback_failed = 0 " ) ;
631
631
} else if * state == StateTag :: CallbackErrored {
632
- sql. push_str ( " AND callback_failed" ) ;
632
+ sql. push_str ( " AND callback_failed = 1 " ) ;
633
633
}
634
634
}
635
635
You can’t perform that action at this time.
0 commit comments