aboutsummaryrefslogtreecommitdiff
path: root/db/database.go
diff options
context:
space:
mode:
authorKushBlazingJudah <59340248+KushBlazingJudah@users.noreply.github.com>2021-11-02 15:06:42 -0300
committerFChannel <>2022-06-19 12:53:29 -0700
commitd80afd8a49f552c5dc51d8346d40809298fef11f (patch)
tree549e0dac8fe0ed21f283c92d7cd6daf40f3941ac /db/database.go
parent36a41e03c59624a2b4a7eb174e9a003e288a1d7d (diff)
db package now compiles without error for now
Diffstat (limited to 'db/database.go')
-rw-r--r--db/database.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/db/database.go b/db/database.go
index 8bb7568..559188b 100644
--- a/db/database.go
+++ b/db/database.go
@@ -14,6 +14,7 @@ import (
"github.com/FChannel0/FChannel-Server/activitypub"
"github.com/FChannel0/FChannel-Server/config"
"github.com/FChannel0/FChannel-Server/util"
+ "github.com/FChannel0/FChannel-Server/webfinger"
_ "github.com/lib/pq"
)
@@ -2316,7 +2317,7 @@ func GetObjectTypeDB(id string) (string, error) {
}
func IsReplyInThread(inReplyTo string, id string) (bool, error) {
- obj, _, err := CheckValidActivity(inReplyTo)
+ obj, _, err := webfinger.CheckValidActivity(inReplyTo)
if err != nil {
return false, err
}