Skip to content

Commit 7722361

Browse files
committed
fix crashing for ALL extensions
1 parent fd7f90f commit 7722361

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
I acknowledge that:
44

55
- I have updated:
6-
- To the latest version of the app (stable is v0.12.3.9)
6+
- To the latest version of the app (stable is v0.12.3.10)
77
- All extensions
88
- If this is an issue with an anime extension, that I should be opening an issue in https://github.com/jmir1/aniyomi-extensions
99
- I have searched the existing issues and this is new ticket **NOT** a duplicate or related to another open issue

.github/ISSUE_TEMPLATE/report_issue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ body:
5252
label: Aniyomi version
5353
description: You can find your Aniyomi version in **More → About**.
5454
placeholder: |
55-
Example: "0.12.3.9"
55+
Example: "0.12.3.10"
5656
validations:
5757
required: true
5858

@@ -97,7 +97,7 @@ body:
9797
required: true
9898
- label: I have tried the [troubleshooting guide](https://aniyomi.jmir.xyz/help/guides/troubleshooting/).
9999
required: true
100-
- label: I have updated the app to version **[0.12.3.9](https://github.com/jmir1/aniyomi/releases/latest)**.
100+
- label: I have updated the app to version **[0.12.3.10](https://github.com/jmir1/aniyomi/releases/latest)**.
101101
required: true
102102
- label: I have updated all installed extensions.
103103
required: true

.github/ISSUE_TEMPLATE/request_feature.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ body:
3232
required: true
3333
- label: If this is an issue with an extension, I should be opening an issue in the [extensions repository](https://github.com/jmir1/aniyomi-extensions/issues/new/choose).
3434
required: true
35-
- label: I have updated the app to version **[0.12.3.9](https://github.com/jmir1/aniyomi/releases/latest)**.
35+
- label: I have updated the app to version **[0.12.3.10](https://github.com/jmir1/aniyomi/releases/latest)**.
3636
required: true
3737
- label: I will fill out all of the requested information in this form.
3838
required: true

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
minSdk = AndroidConfig.minSdk
3131
targetSdk = AndroidConfig.targetSdk
3232
versionCode = 72
33-
versionName = "0.12.3.9"
33+
versionName = "0.12.3.10"
3434

3535
buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
3636
buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"")

app/src/main/java/eu/kanade/tachiyomi/animesource/model/Video.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,14 @@ open class Video(
2828
audioTracks: List<Track> = emptyList(),
2929
) : this(url, quality, videoUrl, null, headers, subtitleTracks, audioTracks)
3030

31+
constructor(
32+
url: String,
33+
quality: String,
34+
videoUrl: String?,
35+
uri: Uri?,
36+
headers: Headers? = null,
37+
) : this(url, quality, videoUrl, uri, headers, emptyList(), emptyList())
38+
3139
@Transient
3240
@Volatile
3341
var status: Int = 0

0 commit comments

Comments
 (0)