mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-15 23:00:31 +05:30
12 lines
217 B
Kotlin
12 lines
217 B
Kotlin
package com.github.libretube.extensions
|
|
|
|
fun query(block: () -> Unit) {
|
|
Thread {
|
|
try {
|
|
block.invoke()
|
|
} catch (e: Exception) {
|
|
e.printStackTrace()
|
|
}
|
|
}.start()
|
|
}
|