1
0
mirror of https://github.com/ElvishArtisan/rivendell.git synced 2025-04-13 16:19:36 +02:00

2020-11-07 Fred Gleason <fredg@paravelsystems.com>

* Removed the quotation marks around the title field in the
	put response dialog in WebGet.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason 2020-11-07 14:00:17 -05:00
parent b3329bcf56
commit d858de6f09
3 changed files with 5 additions and 1 deletions

@ -20552,3 +20552,6 @@
requests. requests.
2020-11-06 Fred Gleason <fredg@paravelsystems.com> 2020-11-06 Fred Gleason <fredg@paravelsystems.com>
* Incremented the package version to 3.4.1int4. * Incremented the package version to 3.4.1int4.
2020-11-07 Fred Gleason <fredg@paravelsystems.com>
* Removed the quotation marks around the title field in the
put response dialog in WebGet.

@ -111,6 +111,7 @@ uninstall-local:
rm -f $(DESTDIR)@libexecdir@/removeimage.html rm -f $(DESTDIR)@libexecdir@/removeimage.html
rm -f $(DESTDIR)@libexecdir@/removepodcast.html rm -f $(DESTDIR)@libexecdir@/removepodcast.html
rm -f $(DESTDIR)@libexecdir@/removepodrss.html rm -f $(DESTDIR)@libexecdir@/removepodrss.html
rm -f $(DESTDIR)@libexecdir@/removerss.html
rm -f $(DESTDIR)@libexecdir@/savefile.html rm -f $(DESTDIR)@libexecdir@/savefile.html
rm -f $(DESTDIR)@libexecdir@/savelog.html rm -f $(DESTDIR)@libexecdir@/savelog.html
rm -f $(DESTDIR)@libexecdir@/savepodcast.html rm -f $(DESTDIR)@libexecdir@/savepodcast.html

@ -365,7 +365,7 @@ void MainObject::PutAudio()
} }
QStringList args; QStringList args;
args.push_back("--output-pattern=Added cart %n [\"%t\"]"); args.push_back("--output-pattern=Added cart %n [%t]");
args.push_back(group_name); args.push_back(group_name);
args.push_back(filename); args.push_back(filename);
QProcess *proc=new QProcess(this); QProcess *proc=new QProcess(this);