diff options
author | Joe <rbo@gmx.us> | 2025-09-14 01:02:46 +0200 |
---|---|---|
committer | Joe <rbo@gmx.us> | 2025-09-14 01:02:46 +0200 |
commit | a2084e46045e94a666f41444b261dc67f10cf7c2 (patch) | |
tree | 74ba2b0ed3fdda7cb1a099666ba8c597894e451b | |
parent | up (diff) | |
download | dotfiles-bsd-a2084e46045e94a666f41444b261dc67f10cf7c2.tar.gz dotfiles-bsd-a2084e46045e94a666f41444b261dc67f10cf7c2.tar.bz2 dotfiles-bsd-a2084e46045e94a666f41444b261dc67f10cf7c2.tar.xz dotfiles-bsd-a2084e46045e94a666f41444b261dc67f10cf7c2.tar.zst dotfiles-bsd-a2084e46045e94a666f41444b261dc67f10cf7c2.zip |
up
Diffstat (limited to '')
-rwxr-xr-x | .local/bin/linkview | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.local/bin/linkview b/.local/bin/linkview index 2d4fc9f..a7b79ea 100755 --- a/.local/bin/linkview +++ b/.local/bin/linkview @@ -49,7 +49,8 @@ sub vid my ($url, $article_name) = @_; my $pid; - $article_name = "some media" if ($article_name eq ""); + $article_name = "some media" if (defined $article_name) && + ($article_name eq ""); $pid = fork(); if (not $pid) { setsid(); |