Skip to content

Commit

Permalink
[server] cremadev 의 devmode 바이너리 추출 시 편집 중인 이전의 데이터가 추출되는 버그 수정
Browse files Browse the repository at this point in the history
### 재현 방법
1. 테이블을 편집하여 필드를 수정한다.
2. devmode 로 바이너리를 추출한다. (데이터가 올바르지 않음)
3. 필드를 수정한 후 편집을 종료한다.
4. 같은 테이블을 다시 편집한다.
5. devmode 로 바이너리를 추출한다. (데이터가 올바르지 않음)
  • Loading branch information
powerumc committed Aug 13, 2019
1 parent 7f2e5a9 commit 681eddf
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server/Ntreev.Crema.Services/Data/DataServiceItemBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,7 @@ protected object ReadTable(string name, bool isDevmode)
if (isDevmode == true && this.domainItems.ContainsKey(name) == true)
{
var domain = this.domainItems[name];
if (this.tableDomainDatas.ContainsKey(name) == false)
this.Serialize(domain);
this.Serialize(domain);
return this.tableDomainDatas[name];
}

Expand Down

0 comments on commit 681eddf

Please sign in to comment.