mirror of
				https://github.com/ElvishArtisan/rivendell.git
				synced 2025-10-31 22:24:02 +01:00 
			
		
		
		
	2021-03-22 Fred Gleason <fredg@paravelsystems.com>
* Fixed a regression in rdcatch(1) that threw a SQL error when attempting to create a new event. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
		| @@ -21333,3 +21333,6 @@ | ||||
| 2021-03-22 Fred Gleason <fredg@paravelsystems.com> | ||||
| 	* Added 'L' and 'R' channel labels when viewing a stereo cut to the | ||||
| 	waveform display in 'RDMarkerDialog'. | ||||
| 2021-03-22 Fred Gleason <fredg@paravelsystems.com> | ||||
| 	* Fixed a regression in rdcatch(1) that threw a SQL error when | ||||
| 	attempting to create a new event. | ||||
|   | ||||
| @@ -1227,7 +1227,9 @@ unsigned MainWidget::AddRecord() | ||||
|   QString sql; | ||||
|  | ||||
|   sql=QString("insert into RECORDINGS set ")+ | ||||
|     "STATION_NAME=\""+RDEscapeString(rda->station()->name())+"\""; | ||||
|     "STATION_NAME=\""+RDEscapeString(rda->station()->name())+"\","+ | ||||
|     "CHANNEL=0,"+ | ||||
|     "CUT_NAME=\"\""; | ||||
|   return RDSqlQuery::run(sql).toUInt(); | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user