2018-07-19 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdadmin(1) that caused the credentials fields to
	be greyed out when configuring a podcast feed to use SFTP uploads.
	* Fixed a bug in 'RDExport' that caused encoding of credentials
	to be corrupt.
	* Fixed a regression in the RDFeed service that caused detection
	of feed	names to fail.
This commit is contained in:
Fred Gleason
2018-07-19 20:11:02 +00:00
parent 25e0868a42
commit 94ff45a4dc
5 changed files with 15 additions and 21 deletions

View File

@@ -508,7 +508,7 @@ void EditFeed::purgeUrlChangedData(const QString &str)
{
QUrl url(str);
QString protocol=url.protocol();
if(((protocol=="ftp")||(protocol=="smb"))&&
if(((protocol=="ftp")||(protocol=="sftp"))&&
(!feed_redirect_check->isChecked())) {
feed_purge_username_label->setEnabled(true);
feed_purge_username_edit->setEnabled(true);