mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-06 22:08:51 +00:00
Monotone-Parent: 2e52dbc1e2c5415cdba61195bc483d77199d3b9c
Monotone-Revision: 3867377ff036971b33104c67e4333772032acb22 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-11-04T20:29:09 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,10 @@
|
||||
2007-11-04 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* GCSFolder.m ([GCSFolder -writeContent:toName:baseVersion:]): the
|
||||
test for the improvement below was wrong, we want to test the
|
||||
value of the column ('0' or null) instead of whether it is null or
|
||||
filled.
|
||||
|
||||
2007-10-29 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* GCSFolder.m ([GCSFolder -writeContent:toName:baseVersion:]):
|
||||
|
||||
@@ -582,7 +582,7 @@ static GCSStringFormatter *stringFormatter = nil;
|
||||
isNewRecord = [storedVersion isNotNull] ? NO : YES;
|
||||
if (!isNewRecord)
|
||||
{
|
||||
if ([[self deletionOfContentWithName:_name] isNotNull])
|
||||
if ([[self deletionOfContentWithName:_name] intValue] > 0)
|
||||
{
|
||||
[self _purgeRecordWithName: _name];
|
||||
isNewRecord = YES;
|
||||
|
||||
Reference in New Issue
Block a user