diff --git a/src/commonMain/rust/bridge/stream.rs b/src/commonMain/rust/bridge/stream.rs index ca1fca6..a9498a1 100644 --- a/src/commonMain/rust/bridge/stream.rs +++ b/src/commonMain/rust/bridge/stream.rs @@ -170,7 +170,7 @@ impl player: deep_links.player, external_player: types::stream_deep_links::ExternalPlayerLink { href: deep_links.external_player.href, - download: deep_links.external_player.download, + streaming: deep_links.external_player.streaming, }, }, source: Some(self.source.to_protobuf(&())), diff --git a/src/main/proto/stremio/core/types/stream.proto b/src/main/proto/stremio/core/types/stream.proto index ab98ea9..ea5cf06 100644 --- a/src/main/proto/stremio/core/types/stream.proto +++ b/src/main/proto/stremio/core/types/stream.proto @@ -63,6 +63,6 @@ message StreamDeepLinks { message ExternalPlayerLink { optional string href = 1; - optional string download = 2; + optional string streaming = 2; } }