소스 검색

Replace urlencoded @ symbol

The fix for https://github.com/dutchcoders/transfer.sh/issues/215 led to @ being encoded as %40 in filenames in the URL returned, which is awkward when working with social media scrapes since ArchiveBot normalises it to @ again.
master
JustAnotherArchivist 5 년 전
부모
커밋
e867a2327f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      transfer.notkiska.pw-upload

+ 1
- 1
transfer.notkiska.pw-upload 파일 보기

@@ -1,2 +1,2 @@
#!/bin/bash
curl -s --upload-file "$1" https://transfer.notkiska.pw/; echo
curl -s --upload-file "$1" https://transfer.notkiska.pw/ | sed 's,%40,@,g'; echo

불러오는 중...
취소
저장