Commit fd12a476 by Kim Jinsung

Bug #59901【@Form 2024年度上期開発 android 1.3.8】「自動同期」がONの状態で「報告担当グループ」が異なる作業を表示しようするとアプリが落ちる

parent fa725f7e
...@@ -500,7 +500,7 @@ public class OperationListActivity extends OperationActivity { ...@@ -500,7 +500,7 @@ public class OperationListActivity extends OperationActivity {
List<OperationDto> needSyncOperationList = new ArrayList<>(); List<OperationDto> needSyncOperationList = new ArrayList<>();
if (mAutoSyncOpenOperationId != null) { if (mAutoSyncOpenOperationId != null) {
OperationDto operationDto = mOperationLogic.getOperation(mAutoSyncOpenOperationId); OperationDto operationDto = mOperationLogic.getOperation(mAutoSyncOpenOperationId);
if (operationDto.needSyncFlg) { if (operationDto != null && operationDto.needSyncFlg) {
needSyncOperationList.add(operationDto); needSyncOperationList.add(operationDto);
} }
} else { } else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment