Skip to content

Commit e7823b6

Browse files
committed
Always show AUDIO on users_coins endpoint
1 parent 2f82b30 commit e7823b6

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

api/v1_users_coins.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ func (app *ApiServer) v1UsersCoins(c *fiber.Ctx) error {
7878
LEFT JOIN artist_coin_pools pools ON pools.base_mint = artist_coins.mint
7979
WHERE artist_coins.user_id = @user_id -- Show owned coins
8080
OR balance > 0 -- Show coins with positive balance
81+
OR ticker = 'AUDIO' -- Always show AUDIO
8182
ORDER BY
8283
-- Always show user's owned coins first, regardless of balance
8384
(artist_coins.user_id = @user_id) DESC,

0 commit comments

Comments
 (0)