Skip to content

Commit

Permalink
Merge branch 'fix-tests' of github.com:Brainicism/bgutil-ytdlp-pot-pr…
Browse files Browse the repository at this point in the history
…ovider into fix-tests
  • Loading branch information
Brainicism committed Dec 25, 2024
2 parents c265f1b + 323ce39 commit f2eb9e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ jobs:
po_token=$(echo "$pot_response" | jq -r '.poToken')
visit_identifier=$(echo "$pot_response" | jq -r '.visitIdentifier')
if [[ "$po_token" != "null" && "$visit_identifier" == "null" ]]; then
echo "Error: 'po_token' or 'visit_identifier' is null."
if [[ "$po_token" == "null" || "$visit_identifier" == "null" ]]; then
echo "::error title=PoToken generation failed,file=server/src/session_manager.ts::'po_token' or 'visit_identifier' is null."
exit 1
fi
Expand Down

0 comments on commit f2eb9e6

Please sign in to comment.