nostr-rs-relay

My dev fork of nostr-rs-relay
git clone git://jb55.com/nostr-rs-relay
Log | Files | Refs | README | LICENSE

commit 2739e4936243e67d73d6fff4821d39b0890251b7
parent f9693f7ac3b08791800f5eed3b4241febf2c7f9e
Author: Greg Heartsfield <scsibug@imap.cc>
Date:   Sat,  8 Oct 2022 13:15:48 -0500

fix: correct future schema version detection

Diffstat:
Msrc/schema.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/schema.rs b/src/schema.rs @@ -277,7 +277,7 @@ PRAGMA user_version=5; info!("vacuumed DB after tags rebuild in {:?}", start.elapsed()); } else if curr_version == 6 { debug!("Database version was already current (v6)"); - } else if curr_version > 7 { + } else if curr_version > 6 { panic!( "Database version is newer than supported by this executable (v{})", curr_version