aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/main.go b/main.go
index 07d2adf..dd9b9d0 100644
--- a/main.go
+++ b/main.go
@@ -2946,7 +2946,7 @@ func StartupArchive(db *sql.DB) {
func CheckInactive(db *sql.DB) {
for true {
CheckInactiveInstances(db)
- time.Sleep(48 * time.Hour)
+ time.Sleep(24 * time.Hour)
}
}
@@ -2976,9 +2976,10 @@ func CheckInactiveInstances(db *sql.DB) map[string]string {
instances[instance] = instance
}
+ re := regexp.MustCompile(Domain + `(.+)?`)
for _, e := range instances {
actor := GetActor(e)
- if actor.Id == "" {
+ if actor.Id == "" && !re.MatchString(e) {
AddInstanceToInactiveDB(db, e)
} else {
DeleteInstanceFromInactiveDB(db, e)