Index: trunk/extensions/SwiftMedia/wmf/rewrite.py |
— | — | @@ -166,7 +166,7 @@ |
167 | 167 | req.path_info = req.path_info.replace('//', '/') |
168 | 168 | |
169 | 169 | # If it already has AUTH, presume that it's good. #07. fixes bug 33620 |
170 | | - hasauth = re.search('/AUTH_[0-9a-fA-F]{32}/', req.path) |
| 170 | + hasauth = re.search('/AUTH_[0-9a-fA-F-]{32,36}', req.path) |
171 | 171 | if req.path.startswith('/auth') or hasauth: |
172 | 172 | return self.app(env, start_response) |
173 | 173 | |