@@ -22,13 +22,15 @@ - (id)initWithPropertyList:(id)propertyList error:(NSError **)error {
22
22
SET_PROPERTY (_name, @" name" );
23
23
SET_PROPERTY (_profileDirectory, @" profileDirectory" );
24
24
SET_PROPERTY (_scratchDirectory, @" scratchDirectory" );
25
+ SET_PROPERTY (_icalURL, @" icalURL" );
25
26
SET_PROPERTY (_rtspAddress, @" rtspAddress" );
26
27
SET_PROPERTY (_rtspPort, @" rtspPort" );
27
28
SET_PROPERTY (_httpPort, @" httpPort" );
28
29
SET_PROPERTY (_httpAuth, @" httpAuth" );
29
30
SET_PROPERTY (_httpUsername, @" httpUsername" );
30
31
SET_PROPERTY (_httpPassword, @" httpPassword" );
31
32
SET_PROPERTY (_gstDebug, @" gstDebug" );
33
+ SET_PROPERTY (_locations, @" locations" );
32
34
33
35
SET_PROPERTY (plistMountpoints, @" mountpoints" );
34
36
SET_PROPERTY (plistChannels, @" channels" );
@@ -86,6 +88,7 @@ - (NSArray *)propertyListChannels {
86
88
87
89
- (id )propertyList {
88
90
VMP_ASSERT (_name, @" name is nil" );
91
+ VMP_ASSERT (_icalURL, @" icalURL is nil" );
89
92
VMP_ASSERT (_rtspAddress, @" rtspAddress is nil" );
90
93
VMP_ASSERT (_rtspPort, @" rtspPort is nil" );
91
94
VMP_ASSERT (_httpPort, @" httpPort is nil" );
@@ -98,6 +101,7 @@ - (id)propertyList {
98
101
99
102
return @{
100
103
@" name" : _name,
104
+ @" icalURL" : _icalURL,
101
105
@" rtspAddress" : _rtspAddress,
102
106
@" rtspPort" : _rtspPort,
103
107
@" httpPort" : _httpPort,
0 commit comments