openURL is opening multiple instances

I am using the openURL for when a row is clicked in a tableView. When testing on my Windows machine it opens the website 3 times for one click. Why would it do this?

Thanks,

Warren

local function onRowTouch( event ) local phase = event.phase if ( "press" == phase ) then print( "Area Touched row:", event.target.index ) if event.target.index == 6 then system.openURL( "http://www.websiteurl.com/" ) else RemoveAll() composer.setVariable( "URL", pages[event.target.index] ) composer.gotoScene( "sceneView" ) end end end

Nevermind I found the problem in my code.

Nevermind I found the problem in my code.