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
{{ message }}
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.
I noticed that in onSuccess() of compression the String path that is returned has _temp appended to it if isStreamable is set to true. This is the code that does that:
private fun validatedFileName(name: String, isStreamable: Boolean?): String {
val videoName = if (isStreamable == null || !isStreamable) name
else "${name}_temp"
if (!videoName.contains("mp4")) return "${videoName}.mp4"
return videoName
}
I tried to then check if that file exists in onSuccess() and it does not.
What is the purpose of this _temp suffix? Perhaps it should be removed?
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I noticed that in
onSuccess()
of compression the String path that is returned has_temp
appended to it ifisStreamable
is set to true. This is the code that does that:I tried to then check if that file exists in
onSuccess()
and it does not.What is the purpose of this
_temp
suffix? Perhaps it should be removed?The text was updated successfully, but these errors were encountered: