about summary refs log tree commit diff stats
path: root/crates
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-15 18:31:12 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2025-06-15 18:31:12 +0200
commit13a062150e4efaf4b87d9213cf68b5a4eabb0235 (patch)
tree7f62d6ce93cd7976399c483091ceb85606d8dc07 /crates
parentdocs(yt_dlp): Fix typo in `Cargo.toml`'s description (diff)
downloadyt-13a062150e4efaf4b87d9213cf68b5a4eabb0235.zip
docs(yt/watch/playlist_handler/client_messages): Add TODO about `current_exe`
Diffstat (limited to '')
-rw-r--r--crates/yt/src/watch/playlist_handler/client_messages/mod.rs1
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")?;