Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,15 @@ struct OpenHaystackMainView: View {
self.checkPluginIsRunning(nil)
}

update()
}

func update(){
DispatchQueue.main.asyncAfter(deadline: .now() + 30)
{
self.downloadLocationReports()
update()
}
}

/// Download the location reports for all current accessories. Shows an error if something fails, like plug-in is missing
Expand Down