From 67003df587b6d89f200b332cb2bd5be6c038ec32 Mon Sep 17 00:00:00 2001 From: Max Sokolov Date: Mon, 24 Oct 2016 17:44:50 +0300 Subject: [PATCH] action fix --- Sources/TableRowAction.swift | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Sources/TableRowAction.swift b/Sources/TableRowAction.swift index 34b9911..9ac7979 100644 --- a/Sources/TableRowAction.swift +++ b/Sources/TableRowAction.swift @@ -45,8 +45,7 @@ private enum TableRowActionHandler where CellType: U switch self { case .voidAction(let handler): - handler(options) - return () + return handler(options) case .action(let handler): return handler(options) }