Commit 047a5f8b by Lee Munkyeong

Merge branch 'features/1.4.100_develop' into 'features/1.4.100'

Features/1.4.100 develop

See merge request !217
parents 91980b05 4e58c35a
...@@ -130,7 +130,7 @@ public class OperationDao extends AbstractDao { ...@@ -130,7 +130,7 @@ public class OperationDao extends AbstractDao {
dto.permitCodeRequiredFlg = cursor.getInt(column); dto.permitCodeRequiredFlg = cursor.getInt(column);
} }
column = cursor.getColumnIndex("display_permission_flg "); column = cursor.getColumnIndex("display_permission_flg");
if (column != -1) { if (column != -1) {
dto.displayPermissionFlg = cursor.getInt(column); dto.displayPermissionFlg = cursor.getInt(column);
} }
......
Subproject commit 89f7f804a54cf4890189864d9384f6b3de21ccb4 Subproject commit edcdda20ab9ec49e8c58117222b7a676f7c8c311
...@@ -54,6 +54,7 @@ public enum ErrorCode { ...@@ -54,6 +54,7 @@ public enum ErrorCode {
L121(R.string.L121), L121(R.string.L121),
L122(R.string.L122), L122(R.string.L122),
L124(R.string.L124), L124(R.string.L124),
L125(R.string.L125),
C_E_SYSTEM_0001(R.string.C_E_SYSTEM_0001), C_E_SYSTEM_0001(R.string.C_E_SYSTEM_0001),
C_E_SYSTEM_0002(R.string.C_E_SYSTEM_0002), C_E_SYSTEM_0002(R.string.C_E_SYSTEM_0002),
......
...@@ -4890,7 +4890,7 @@ public class ContentViewActivity extends ABVContentViewActivity { ...@@ -4890,7 +4890,7 @@ public class ContentViewActivity extends ABVContentViewActivity {
// 空き容量が足りない // 空き容量が足りない
handleErrorMessageToast(ErrorCode.STORAGE_ERROR); handleErrorMessageToast(ErrorCode.STORAGE_ERROR);
} else { } else {
handleErrorMessageToast(ErrorCode.L120); handleErrorMessageToast(ErrorCode.L125);
} }
} }
}); });
......
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