mirror of
https://github.com/cranci1/Sora.git
synced 2026-04-05 09:09:46 +00:00
Hopefully works now.
This commit is contained in:
parent
abe14278cb
commit
c7467eb9e9
1 changed files with 4 additions and 1 deletions
|
|
@ -61,6 +61,7 @@ struct MediaInfoView: View {
|
|||
@State private var isModuleSelectorPresented = false
|
||||
@State private var isMatchingPresented = false
|
||||
@State private var matchedTitle: String? = nil
|
||||
@State private var matchedMalID: Int? = nil
|
||||
@State private var showSettingsMenu = false
|
||||
@State private var customAniListID: Int?
|
||||
@State private var showStreamLoadingView: Bool = false
|
||||
|
|
@ -689,7 +690,8 @@ struct MediaInfoView: View {
|
|||
markAllPreviousEpisodes(episode: episode, index: index, inSeason: isGroupedBySeasons)
|
||||
},
|
||||
tmdbID: tmdbID,
|
||||
seasonNumber: season
|
||||
seasonNumber: season,
|
||||
malID: matchedMalID
|
||||
)
|
||||
.disabled(isFetchingEpisode)
|
||||
}
|
||||
|
|
@ -860,6 +862,7 @@ struct MediaInfoView: View {
|
|||
AnilistMatchPopupView(seriesTitle: title) { id, title, malId in
|
||||
handleAniListMatch(selectedID: id)
|
||||
matchedTitle = title
|
||||
matchedMalID = malId
|
||||
fetchMetadataIDIfNeeded()
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue