|
@@ -5945,6 +5945,11 @@ public class MainActivity extends WpadActivity {
|
|
// Log.i(TAG, "[sendWallPadCallLiveBR_ACK] ===== START =====");
|
|
// Log.i(TAG, "[sendWallPadCallLiveBR_ACK] ===== START =====");
|
|
Intent mIntent = new Intent();
|
|
Intent mIntent = new Intent();
|
|
mIntent.setAction(Declare.BR.BR_ACK_WALLPADCALL_LIVE);
|
|
mIntent.setAction(Declare.BR.BR_ACK_WALLPADCALL_LIVE);
|
|
|
|
+ //jglee - 현재 현관문 앱을 실행하고 있는지 여부 파악하기 위해(메인에서 현관문은 3초후 변수가 원래대로 돌아옴)
|
|
|
|
+ boolean isFront = false;
|
|
|
|
+ if(mCallController!=null && mCallController.mCallInfo.getFRONT() != CALLSTATUS.IDLE)
|
|
|
|
+ isFront = true;
|
|
|
|
+ mIntent.putExtra("isFront", isFront);
|
|
getApplicationContext().sendBroadcast(mIntent);
|
|
getApplicationContext().sendBroadcast(mIntent);
|
|
} catch (RuntimeException re) {
|
|
} catch (RuntimeException re) {
|
|
LogUtil.errorLogInfo("", TAG, re);
|
|
LogUtil.errorLogInfo("", TAG, re);
|