Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Shkenev
gajim
Commits
dfb9d926
Commit
dfb9d926
authored
19 years ago
by
nkour
Browse files
Options
Downloads
Patches
Plain Diff
exclude kind gcstatus/status rather than ask for rest of statuses
parent
14c7d7f8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/common/logger.py
+2
-4
2 additions, 4 deletions
src/common/logger.py
with
2 additions
and
4 deletions
src/common/logger.py
+
2
−
4
View file @
dfb9d926
...
...
@@ -335,12 +335,10 @@ def date_has_logs(self, jid, year, month, day):
SELECT log_line_id FROM logs
WHERE jid_id = %d
AND time BETWEEN %d AND %d
AND kind IN (
%d, %d, %d,
%d, %d)
AND kind
NOT
IN (%d, %d)
LIMIT 1
'''
%
(
jid_id
,
start_of_day
,
last_second_of_day
,
constants
.
KIND_SINGLE_MSG_RECV
,
constants
.
KIND_CHAT_MSG_RECV
,
constants
.
KIND_SINGLE_MSG_SENT
,
constants
.
KIND_CHAT_MSG_SENT
,
constants
.
KIND_GC_MSG
))
constants
.
KIND_STATUS
,
constants
.
KIND_GCSTATUS
))
results
=
cur
.
fetchone
()
if
results
:
return
True
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment