1
0
mirror of git://jb55.com/damus synced 2024-09-16 02:03:45 +00:00

profiledb: disable database lookups for now

This is causing extremely bad lag in the UI
This commit is contained in:
William Casarin 2023-07-31 05:19:33 -07:00
parent 66e204eb91
commit 2b99f94d13

View File

@ -100,7 +100,9 @@ class Profiles {
if profile != nil {
return true
}
// check memory first
return false
// then disk
guard let pull_date = database.get_network_pull_date(id: id) else {
return false