mirror of
https://github.com/cranci1/Sora.git
synced 2026-05-12 04:50:41 +00:00
fixed @50n50 beautiful crash
This commit is contained in:
parent
bee5a31755
commit
c74a4e736e
1 changed files with 2 additions and 3 deletions
|
|
@ -38,9 +38,8 @@ struct SearchResultsGrid: View {
|
||||||
ForEach(items) { item in
|
ForEach(items) { item in
|
||||||
NavigationLink(destination:
|
NavigationLink(destination:
|
||||||
MediaInfoView(title: item.title, imageUrl: item.imageUrl, href: item.href, module: selectedModule)
|
MediaInfoView(title: item.title, imageUrl: item.imageUrl, href: item.href, module: selectedModule)
|
||||||
.onDisappear {
|
.environmentObject(moduleManager)
|
||||||
|
.environmentObject(libraryManager)
|
||||||
}
|
|
||||||
) {
|
) {
|
||||||
ZStack {
|
ZStack {
|
||||||
LazyImage(url: URL(string: item.imageUrl)) { state in
|
LazyImage(url: URL(string: item.imageUrl)) { state in
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue