add: PORT env var

This commit is contained in:
trisua 2025-06-22 00:04:32 -04:00
parent 52c8983634
commit 5961999ce4
9 changed files with 58 additions and 4 deletions

View file

@ -1795,6 +1795,11 @@ impl DataManager {
);
}
// auto unlist
if owner.settings.auto_unlist {
data.context.is_nsfw = true;
}
// ...
let conn = match self.0.connect().await {
Ok(c) => c,