[WebUI] Fix `TypeError` in DelugeWeb constructor
In `twisted 22.10`, a check new for passing the `path` variable as `bytes` in the `putChild` method. We were enforcing this on every other place but the `__init__` of `DelugeWeb` itself. Ref: https://github.com/twisted/twisted/pull/11718 Closes: https://dev.deluge-torrent.org/ticket/3566
This commit is contained in:
parent
b3d1fd79a8
commit
3565a9a817
|
@ -682,7 +682,7 @@ class DelugeWeb(component.Component):
|
|||
|
||||
if self.base != '/':
|
||||
# Strip away slashes and serve on the base path as well as root path
|
||||
self.top_level.putChild(self.base.strip('/'), self.top_level)
|
||||
self.top_level.putChild(self.base.strip('/').encode(), self.top_level)
|
||||
|
||||
setup_translation()
|
||||
|
||||
|
|
Loading…
Reference in New Issue