Skip to content

Commit

Permalink
Fixed: transformers wouldn't work on PKs.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljungberg committed Jan 21, 2013
1 parent 7970506 commit f3439ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WLRemoteObject.j
Expand Up @@ -269,7 +269,7 @@ function CamelCaseToHyphenated(camelCase)
{
var pkValue = js[remotePkName];
if ([pkProperty valueTransformer])
pkValue = [[pkProperty valueTransformer] transformedValue:_value];
pkValue = [[pkProperty valueTransformer] transformedValue:pkValue];

var existingObject = [[self context] registeredObjectForRemoteName:[self remoteName] withPk:pkValue];

Expand Down

0 comments on commit f3439ff

Please sign in to comment.