Use the return value of the merged dict for the params. Closes #938.

This commit is contained in:
Jawwad Ahmad
2012-09-18 15:52:54 -04:00
parent 4f1fdf2bea
commit e6e515d0c7
2 changed files with 9 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ NSDictionary * RKDictionaryByMergingDictionaryWithDictionary(NSDictionary *dict1
}
}];
return mergedDictionary;
return [mergedDictionary copy];
}
NSDictionary * RKDictionaryByReplacingPercentEscapesInEntriesFromDictionary(NSDictionary *dictionary)