Skip to content

Instantly share code, notes, and snippets.

@lacyrhoades
Created January 30, 2014 19:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lacyrhoades/8716419 to your computer and use it in GitHub Desktop.
Save lacyrhoades/8716419 to your computer and use it in GitHub Desktop.
diff --git a/sellonetsy/Code/ViewControllers/SOEActivityCollectionViewController.m b/sellonetsy/Code/ViewControllers/SOEActivityCollectionViewController.m
index d7b4a37..e726c89 100644
--- a/sellonetsy/Code/ViewControllers/SOEActivityCollectionViewController.m
+++ b/sellonetsy/Code/ViewControllers/SOEActivityCollectionViewController.m
@@ -163,8 +163,8 @@ typedef enum {
else if (item.type == EtsyChannelItemTypeShop) {
controller = [[SOEActivityDetailViewController alloc] initWithShopId:item.Shop.shop_id];
}
- else if (item.type == EtsyChannelItemTypeReceipt) {
- controller = [[SOEActivityDetailViewController alloc] initWithTransactionId:item.Receipt.receipt_id];
+ else if (item.type == EtsyChannelItemTypeFeedbackReceived) {
+ controller = [[SOEActivityDetailViewController alloc] initWithTransactionId:item.Feedback.transaction_id];
}
if (controller) {
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment