Chénglóng Mǎ
Chénglóng Mǎ
Please refer to https://github.com/andompesta/ComE/issues/3#issuecomment-1142983129
I think we need to avoid the global variables `__current_graph` and `__vertex2str`. Here is [my solution](https://github.com/andompesta/ComE/pull/12/commits/451eb758590c1e1a10a480f402a6cd5803d3c529). I've created a pull request to fix this.
The issue here is that the regex used in `HlsPlaylistParser` does not support `#EXTINF:-1`. So I copied the source code of `HlsPlaylistParser` and changed its regex pattern from `:([\d\.]+)\b` to...
> > @botaydotcom - It's probably fairly trivial to make an m3u MediaSource (I think in all cases I've actually seen, the file has only contained a single URL, in...
@diarmuidmorgan I got the same issue, and I agree with you. It should be `itemMeans.get(itemIdx)`; @wangyufengkevin could you fix it?
好像迁移到 https://guoguibing.github.io/librec/index.html 了,但是只有首页,文档看不了
目前已解决,在`Router::detect_uri()` 方法中如果`$uri = '/'` 会返回 `'/'` 而对于包含查询语句的uri,如'/?user=123' 会返回空值也就是` `,这将导致 `Router::$routes` 中找不到对应值。 **解决办法**: `Router::detect_uri()` 最后一行中`trim($uri, '/')` 改为 `trim($uri)`
Thank you @waystogetthere
Or you can restrict the version number of wxPython to 4.1.0: In requirements.txt ```text wxpython==4.1.0 ``` In setup.py ```python deps = [ ... 'wxpython==4.1.0', ... ] ```