diff --git a/pkg/models/blocklist.go b/pkg/models/blocklist.go index 7aabc29..92f82c2 100644 --- a/pkg/models/blocklist.go +++ b/pkg/models/blocklist.go @@ -126,10 +126,10 @@ func BlockedUserIDsByUser(userId uint64) []uint64 { return userIDs } -// BlockedUsernames returns all usernames blocked by the user. +// BlockedUsernames returns all usernames blocked by (or blocking) the user. func BlockedUsernames(userId uint64) []string { var ( - userIDs = BlockedUserIDsByUser(userId) + userIDs = BlockedUserIDs(userId) usernames = []string{} )