diff options
author | niko <niko> | 2012-06-05 21:16:05 (GMT) |
---|---|---|
committer | niko <niko> | 2012-06-05 21:16:05 (GMT) |
commit | 91afc6043c9959d90fa61ffab4fe72fa6824352f (patch) | |
tree | 7026e1e53060ba807b35e9f3de18bc212226abc1 /src | |
parent | f7a6076bef646fd22af59697db67364d0bed9ee8 (diff) | |
download | synckolab-91afc6043c9959d90fa61ffab4fe72fa6824352f.tar.gz |
fix for #24934
Diffstat (limited to 'src')
-rw-r--r-- | src/chrome/content/synckolab/synckolab.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chrome/content/synckolab/synckolab.js b/src/chrome/content/synckolab/synckolab.js index 413bfa3..25270dd 100644 --- a/src/chrome/content/synckolab/synckolab.js +++ b/src/chrome/content/synckolab/synckolab.js @@ -702,7 +702,7 @@ com.synckolab.main.getMessage = function() } // check if we can ignore this message because its too old (0=take all into accout) - if(com.synckolab.main.gConfig.timeFrame && com.synckolab.main.gConfig.timeFrame > 0 && skipCMessage !== true) + if(com.synckolab.main.gConfig.type !== "contact" && com.synckolab.main.gConfig.timeFrame && com.synckolab.main.gConfig.timeFrame > 0 && skipCMessage !== true) { com.synckolab.tools.logMessage("Checking if message might be too old for now " + (new Date()).getTime(), com.synckolab.global.LOG_DEBUG); |