We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23c3fb5 commit 68cf942Copy full SHA for 68cf942
store/postgres/src/relational_queries.rs
@@ -488,7 +488,7 @@ impl EntityData {
488
let mut entries = map.into_iter().filter_map(move |(key, json)| {
489
if key == "block_range" {
490
let r = json.as_str().unwrap();
491
- let rx = Regex::new("\\[(?P<start>[0-9]+),[0-9]+\\)").unwrap();
+ let rx = Regex::new("\\[(?P<start>[0-9]+),([0-9]+)?\\)").unwrap();
492
let cap = rx.captures(r).unwrap();
493
let start = cap
494
.name("start")
0 commit comments