tangled
alpha
login
or
join now
parakeet.at
/
parakeet
62
fork
atom
Parakeet is a Rust-based Bluesky AppServer aiming to implement most of the functionality required to support the Bluesky client
appview
atproto
bluesky
rust
appserver
62
fork
atom
overview
issues
12
pulls
pipelines
fix list allows
mia.omg.lol
5 months ago
ee988c36
da2dbdd1
verified
This commit was signed with the committer's
known signature
.
mia.omg.lol
SSH Key Fingerprint:
SHA256:eb+NhC0QEl+XKRuFP/97oH6LEz0TXTKPXGDIAI5y7CQ=
+2
-2
1 changed file
expand all
collapse all
unified
split
consumer
src
db
gates.rs
+2
-2
consumer/src/db/gates.rs
reviewed
···
83
83
)
84
84
.await?
85
85
.get(0);
86
86
-
if count == 0 {
87
87
-
return Ok(true);
86
86
+
if count != 0 {
87
87
+
return Ok(false);
88
88
}
89
89
}
90
90