浏览代码

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

正在加载...
取消
保存