mirror of
https://github.com/zarzet/SpotiFLAC-Mobile.git
synced 2026-07-13 07:46:40 +02:00
fix(ios): add filter parameter to SearchDeezerAll call
This commit is contained in:
@@ -222,7 +222,8 @@ import Gobackend // Import Go framework
|
||||
let query = args["query"] as! String
|
||||
let trackLimit = args["track_limit"] as? Int ?? 15
|
||||
let artistLimit = args["artist_limit"] as? Int ?? 3
|
||||
let response = GobackendSearchDeezerAll(query, Int(trackLimit), Int(artistLimit), &error)
|
||||
let filter = args["filter"] as? String ?? ""
|
||||
let response = GobackendSearchDeezerAll(query, Int(trackLimit), Int(artistLimit), filter, &error)
|
||||
if let error = error { throw error }
|
||||
return response
|
||||
|
||||
|
||||
Reference in New Issue
Block a user