View Single Post
05-02-22, 10:17 AM   #1
cheesewiz
A Fallenroot Satyr
Join Date: Jan 2021
Posts: 29
Is sort by time remaining no longer an option for auction house addons?

https://wowpedia.fandom.com/wiki/API...endBrowseQuery

Code:
0	Price	
1	Name	
2	Level	
3	Bid	
4	Buyout	
5	TimeRemaining	Added in 9.0.1
TimeRemaining was added here but when I try to use it, it's ignored. The list defaults to alphabetical and doesn't recognize this as a sort method. I can't find any examples of an auction house addon that's able to use Time as a sort, either.

This is where I tried to use it,

Code:
Auctionator.Constants.ShoppingListSorts = {
  {sortOrder = Enum.AuctionHouseSortOrder.TimeRemaining, reverseSort = false},
  {sortOrder = Enum.AuctionHouseSortOrder.Price, reverseSort = true}
  Reply With Quote