Pass customer_id since we have it

Stephen Paul Weber created

Change summary

web.rb | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)

Detailed changes

web.rb 🔗

@@ -211,7 +211,9 @@ class Web < Roda
 				cc.from = from
 				cc.application_id = application_id
 				cc.answer_url = url inbound_calls_path(nil, customer_id)
-				cc.disconnect_url = url inbound_calls_path(:transfer_complete)
+				cc.disconnect_url = url(
+					inbound_calls_path(:transfer_complete, customer_id)
+				)
 			end
 		end
 	end