Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: The screen recording file is stored in the "Video" directory, but clicking on "Open Folder" in the banner notification will redirect to the main directory #2041

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions assets/scripts/dde-file-manager
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
args=""
current_path=$(pwd)
for arg in "$@"; do
if [[ $arg =~ "." ]] || [[ $arg =~ ".." ]] || [[ $arg =~ "~/" ]]; then
if [[ $arg == "." ]] || [[ $arg == ".." ]] || [[ $arg == *"/." ]] || [[ $arg == *"/.." ]] || [[ $arg =~ "./" ]] || [[ $arg =~ "../" ]] || [[ $arg =~ "~/" ]]; then
name=${arg##*/}
path=${arg%/*}"/"
if [[ $name == "." ]] || [[ $name == ".." ]]; then
Expand All @@ -20,7 +20,7 @@ for arg in "$@"; do
path=$(echo "$path" | sed "s|~/|$home_path/|g")
cd $current_path
fi
cd $path
cd "$path"
path=$(pwd)"/"
cd $current_path
absolute_path=$path$name
Expand Down
Loading