release v0.8.4

This commit is contained in:
Ivan Agosto 2025-02-06 22:25:35 -06:00
parent 3f461792e5
commit 5e1a8b40c6
2 changed files with 6 additions and 3 deletions

View File

@ -9,8 +9,8 @@ android {
compileSdk 35 compileSdk 35
minSdkVersion 26 minSdkVersion 26
targetSdkVersion 32 targetSdkVersion 32
versionCode 14 versionCode 15
versionName "0.8.3" versionName "0.8.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
} }

View File

@ -140,7 +140,10 @@ class ReproductorActivity : AppCompatActivity() {
} }
AsyncTask.execute { AsyncTask.execute {
videoPlayback = this.clientVideo.getVideo(this.video.uuid, ManagerSingleton.token.token) videoPlayback = if (ManagerSingleton.token.status == 1)
this.clientVideo.getVideo(this.video.uuid, ManagerSingleton.token.token)
else
this.clientVideo.getVideo(this.video.uuid)
// TODO: Make this configurable // TODO: Make this configurable
// val bufferSize = 1024 * 1024 // 1mb // val bufferSize = 1024 * 1024 // 1mb
// val allocator = DefaultAllocator(true, bufferSize) // val allocator = DefaultAllocator(true, bufferSize)