Skip to content

Commit

Permalink
use streaming var instead of download in strea deeplinks
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBeastLT committed Nov 9, 2023
1 parent 444f03c commit 409dd35
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commonMain/rust/bridge/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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(&())),
Expand Down
2 changes: 1 addition & 1 deletion src/main/proto/stremio/core/types/stream.proto
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ message StreamDeepLinks {

message ExternalPlayerLink {
optional string href = 1;
optional string download = 2;
optional string streaming = 2;
}
}

0 comments on commit 409dd35

Please sign in to comment.