소스 검색

closing the window will cancel implicitly

Sebastian Stenzel 3 년 전
부모
커밋
abc0f952e0
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/main/java/org/cryptomator/ui/keyloading/hub/RegisterDeviceController.java

+ 1 - 1
src/main/java/org/cryptomator/ui/keyloading/hub/RegisterDeviceController.java

@@ -81,7 +81,7 @@ public class RegisterDeviceController implements FxController {
 
 	private void registrationSucceeded(HttpResponse<Void> voidHttpResponse) {
 		LOG.info("Registered!");
-		result.cancel(true); // TODO: show visual feedback "please wait for device authorization"
+		window.close(); // TODO: show visual feedback "please wait for device authorization"
 	}
 
 	private Void registrationFailed(Throwable cause) {