mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
feat: Print proxy URL information in /debug-env
command (#5648)
This commit is contained in:
parent
85a7f4a6a9
commit
c0a5a3e805
|
@ -35,6 +35,7 @@
|
|||
- Minor: The emote popup now reloads when Twitch emotes are reloaded. (#5580)
|
||||
- Minor: Added `--login <username>` CLI argument to specify which account to start logged in as. (#5626)
|
||||
- Minor: Indicate when subscriptions and resubscriptions are for multiple months. (#5642)
|
||||
- Minor: Proxy URL information is now included in the `/debug-env` command. (#5648)
|
||||
- Bugfix: Fixed tab move animation occasionally failing to start after closing a tab. (#5426, #5612)
|
||||
- Bugfix: If a network request errors with 200 OK, Qt's error code is now reported instead of the HTTP status. (#5378)
|
||||
- Bugfix: Fixed restricted users usernames not being clickable. (#5405)
|
||||
|
|
|
@ -79,6 +79,7 @@ QString listEnvironmentVariables(const CommandContext &ctx)
|
|||
QStringList debugMessages{
|
||||
"recentMessagesApiUrl: " + env.recentMessagesApiUrl,
|
||||
"linkResolverUrl: " + env.linkResolverUrl,
|
||||
"proxyUrl: " + env.proxyUrl.value_or("N/A"),
|
||||
"twitchServerHost: " + env.twitchServerHost,
|
||||
"twitchServerPort: " + QString::number(env.twitchServerPort),
|
||||
"twitchServerSecure: " + QString::number(env.twitchServerSecure),
|
||||
|
|
Loading…
Reference in a new issue