You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
you should get a toast that tells you when you get a pending item for your collection quest, but that toast doesn't show for me. i just have to go to my party and see if i have any pending items after i complete my tasks
The text was updated successfully, but these errors were encountered:
investigating this i see we are doing a toast for found items in TaskRepositoryImpl#126
if let drop = response.temp?.drop {
var dialog = drop.dialog
if dialog == nil {
dialog = "You found a \(drop.key ?? "")"
}
ToastManager.show(text: dialog ?? "", color: .gray)
}
the response looks has a shape of TaskResponseTempProtocol but the quest prop only has a progressDelta.
@phillipthelen is there somewhere else in the code that sends a signal when a pending item is found? Or would require an update to the backend to include this information and then modify TaskResponseQuestProtocol?
you should get a toast that tells you when you get a pending item for your collection quest, but that toast doesn't show for me. i just have to go to my party and see if i have any pending items after i complete my tasks
The text was updated successfully, but these errors were encountered: