Skip to content

Commit 257e9e4

Browse files
committed
Fix loading of RecordingRule::m_filter introduced in SHA1:a41e9657 .
1 parent 974dcf4 commit 257e9e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mythtv/libs/libmythtv/recordingrule.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ bool RecordingRule::Load()
107107
m_dupMethod = static_cast<RecordingDupMethodType>
108108
(query.value(6).toInt());
109109
m_dupIn = static_cast<RecordingDupInType>(query.value(7).toInt());
110-
m_filter = query.value(43).toUInt();
110+
m_filter = query.value(47).toUInt();
111111
m_isInactive = query.value(8).toBool();
112112
// Storage
113113
m_recProfile = query.value(9).toString();

0 commit comments

Comments
 (0)