We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59be832 commit a38f191Copy full SHA for a38f191
mythtv/libs/libmyth/recordingtypes.cpp
@@ -83,6 +83,8 @@ QString toRawString(RecordingType rectype)
83
84
RecordingType recTypeFromString(QString type)
85
{
86
+ if (type.toLower() == "not recording" || type.toLower() == "not")
87
+ return kNotRecording;
88
if (type.toLower() == "single record" || type.toLower() == "single")
89
return kSingleRecord;
90
else if (type.toLower() == "record daily" || type.toLower() == "daily")
0 commit comments