Skip to content
Snippets Groups Projects

Remove delays for streams and history remote access endpoints

Merged Nicolas Pomepuy requested to merge Aza/vlc-android:remote_access into master
1 file
+ 0
2
Compare changes
  • Side-by-side
  • Inline
@@ -778,7 +778,6 @@ fun Route.setupRouting(appContext: Context, scope: CoroutineScope) {
return@get
}
val gson = Gson()
delay(5000)
call.respondText(gson.toJson(list))
}
// List of all the network shares
@@ -807,7 +806,6 @@ fun Route.setupRouting(appContext: Context, scope: CoroutineScope) {
?: "", false, "", (mediaLibraryItem as MediaWrapper).uri.toString(), true, favorite = mediaLibraryItem.isFavorite))
}
val gson = Gson()
delay(5000)
call.respondText(gson.toJson(list))
}
//list of folders and files in a path
Loading