Skip to content

Commit

Permalink
Add default password for TS3 channel (#1347)
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin648 authored Dec 18, 2024
1 parent 81e582c commit 9d92126
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extensions/src/ACRE2DistortionTestPlugin/TS3Client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ acre::Result CTS3Client::moveToServerTS3Channel() {

const uint64_t channelId = findChannelByNames(details);
if ((channelId != INVALID_TS3_CHANNEL) && (channelId != currentChannelId)) {
std::string password = "";
std::string password = "acre";
if (details.at(1) != "" && details.at(0) != "") {
password = details.at(1);
}
Expand Down
2 changes: 1 addition & 1 deletion extensions/src/ACRE2TS/TS3Client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ acre::Result CTS3Client::moveToServerTS3Channel() {

const uint64_t channelId = findChannelByNames(details);
if ((channelId != INVALID_TS3_CHANNEL) && (channelId != currentChannelId)) {
std::string password = "";
std::string password = "acre";
if (details.at(1) != "" && details.at(0) != "") {
password = details.at(1);
}
Expand Down

0 comments on commit 9d92126

Please sign in to comment.