Compare commits

...

2 commits

2 changed files with 2 additions and 2 deletions

View file

@ -20,4 +20,4 @@ elasticsearch<8
future future
pytz pytz
pypdfium2 pypdfium2
Pillow<10 Pillow>=10

View file

@ -38,7 +38,7 @@ function parseURL() {
} else if (id.startsWith('edits/')) { } else if (id.startsWith('edits/')) {
var parts = id.split('/') var parts = id.split('/')
parts.shift() parts.shift()
id = parts.shift().replace(/_/g, ' ') id = parts.shift().replace(/_/g, ' ').replace(/%09/g, '_')
type = "edit" type = "edit"
if (parts.length >= 2) { if (parts.length >= 2) {
args.sort = parts[1] args.sort = parts[1]