mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-12-01 14:20:11 +01:00
2022-10-06 Fred Gleason <fredg@paravelsystems.com>
* Changed the type of the 'REPLICATORS.URL_PASSWORD` field in the database to 'text'. * Applied Base64 encoding to the 'REPLICATORS.URL_PASSWORD' field in the database. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
@@ -227,7 +227,8 @@ void MainObject::LoadReplicators()
|
||||
config->setQuality(q->value(6).toUInt());
|
||||
config->setUrl(q->value(7).toString());
|
||||
config->setUrlUsername(q->value(8).toString());
|
||||
config->setUrlPassword(q->value(9).toString());
|
||||
config->
|
||||
setUrlPassword(QByteArray::fromBase64(q->value(9).toString().toUtf8()));
|
||||
config->setEnableMetadata(RDBool(q->value(10).toString()));
|
||||
config->setNormalizeLevel(q->value(11).toInt());
|
||||
switch(config->type()) {
|
||||
|
||||
Reference in New Issue
Block a user