diff --git a/ios/StoryWidget/StoryWidget.swift b/ios/StoryWidget/StoryWidget.swift index 4c65720b..53ea44fd 100644 --- a/ios/StoryWidget/StoryWidget.swift +++ b/ios/StoryWidget/StoryWidget.swift @@ -23,7 +23,7 @@ struct StoryWidgetView : View { .containerBackground(for: .widget) { Color(UIColor.secondarySystemBackground) } - .widgetURL(URL(string: "\(story.id)")) + .widgetURL(URL(string: "/item/\(story.id)")) default: HStack { VStack { @@ -62,7 +62,7 @@ struct StoryWidgetView : View { .containerBackground(for: .widget) { Color(UIColor.secondarySystemBackground) } - .widgetURL(URL(string: "\(story.id)")) + .widgetURL(URL(string: "/item/\(story.id)")) } } }