Another Swipe Issue occuring for me

I’ve tried searching for this yet none of the responses to the posts have helped me. I’m also having an issue where I can no longer swipe the screen. Any help will be greatly appreciated!
Appium Version 1.3.3 (Ophiuchus)
Client: 2.1.0

I have tried the following with no luck:

1.)
driver.swipe(550, 139, 225, 139,900);

2.)
public void scrollRight(){
JavascriptExecutor js= (JavascriptExecutor) driver;
Map<String, String> scrollMap =new HashMap<String, String>();
scrollMap.put(“direction”, “right”);
js.executeScript(“mobile: scroll”, scrollMap);
}