diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-15 18:31:12 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-06-15 18:31:12 +0200 |
commit | 13a062150e4efaf4b87d9213cf68b5a4eabb0235 (patch) | |
tree | 7f62d6ce93cd7976399c483091ceb85606d8dc07 /crates | |
parent | docs(yt_dlp): Fix typo in `Cargo.toml`'s description (diff) | |
download | yt-13a062150e4efaf4b87d9213cf68b5a4eabb0235.zip |
docs(yt/watch/playlist_handler/client_messages): Add TODO about `current_exe`
Diffstat (limited to 'crates')
-rw-r--r-- | crates/yt/src/watch/playlist_handler/client_messages/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/yt/src/watch/playlist_handler/client_messages/mod.rs b/crates/yt/src/watch/playlist_handler/client_messages/mod.rs index 6f7a59e..c05ca87 100644 --- a/crates/yt/src/watch/playlist_handler/client_messages/mod.rs +++ b/crates/yt/src/watch/playlist_handler/client_messages/mod.rs @@ -19,6 +19,7 @@ use tokio::process::Command; use super::mpv_message; async fn run_self_in_external_command(app: &App, args: &[&str]) -> Result<()> { + // TODO(@bpeetz): Can we trust this value? <2025-06-15> let binary = env::current_exe().context("Failed to determine the current executable to re-execute")?; |