ME
ME
Same here on `Synapse v1.107`. ``` oidc_providers: scopes: ["openid", "email", "profile"] user_mapping_provider: config: picture_template: "{{ user.picture }}" ``` In my case all mappings work fine with the exception of the...
Same here for ... -- Zed 0.192.6 -- PHP -- macOS (MacBook M4) Indexing never ends and stops at 59.05%. When it gets stuck at 59 %, hovering classes, methods...
This seems to be fixed in my case (Zed 0.195.4).
https://github.com/teamtnt/tntsearch/blob/781e0eec1a1f56db0cdc2936849c508482b25547/src/Engines/MysqlEngine.php#L68-L72 needs to be escaped like ... ``` $this->index->exec("INSERT INTO ".$this->indexName."_info ( `key`, `value`) values ( 'total_documents', 0), ( 'stemmer', 'TeamTNT\\\\TNTSearch\\\\Stemmer\\\\NoStemmer'), ( 'tokenizer', 'TeamTNT\\\\TNTSearch\\\\Support\\\\Tokenizer')" ); ``` Otherwise string "`TeamTNTTNTSearchStemmerNoStemmer`" gets...
It can be fixed by changing the regex in the Lambda filter in ... ``` $lambdaFunc = function($word){ return preg_replace('/[\x00-\x1F\x80-\xFF]/u', ' ', $word); }; ``` from ... '/[\x00-\x1F\x80-\xFF]/u' to e.g....
I meant a room without any message. Especially for direct rooms it makes no sense to create the room w/o any message.
This is not the point. It would allow to avoid ghost rooms which clutter up the room lists. Furthermore it would be more convenient for the user by allowing to...
> A room could be ghost even after sending a message. This is right.
Same here. I am not able to use "react/http". Many other packages are downgraded just because of the "psr/http-message": "^1.0" dependency. Please merge this!
"According to W3Techs’ data, Nginx holds about 34.2% of the market and Apache about 31.2% — 28.9% and 22.6% respectively according to Netcraft’s data." ( see https://www.stackscale.com/blog/top-web-servers/). So I wasn't...