Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
QuasselDroid-ng
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
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
Janne Mareike Koschinski
QuasselDroid-ng
Commits
503ce6a1
Commit
503ce6a1
authored
7 years ago
by
Janne Mareike Koschinski
Browse files
Options
Downloads
Patches
Plain Diff
Correctly handle timezones for day change messages
parent
6b1df6b4
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
persistence/src/main/java/de/kuschku/quasseldroid/persistence/QuasselDatabase.kt
+2
-2
2 additions, 2 deletions
...va/de/kuschku/quasseldroid/persistence/QuasselDatabase.kt
with
2 additions
and
2 deletions
persistence/src/main/java/de/kuschku/quasseldroid/persistence/QuasselDatabase.kt
+
2
−
2
View file @
503ce6a1
...
@@ -195,8 +195,8 @@ FROM
...
@@ -195,8 +195,8 @@ FROM
AND type & ~? > 0
AND type & ~? > 0
UNION ALL
UNION ALL
SELECT DISTINCT
SELECT DISTINCT
strftime('%s', date(datetime(time / 1000, 'unixepoch')), 'utc') * -1000 AS messageId,
strftime('%s', date(datetime(time / 1000, 'unixepoch'
, 'localtime'
)), 'utc') * -1000 AS messageId,
strftime('%s', date(datetime(time / 1000, 'unixepoch')), 'utc') * 1000 AS time,
strftime('%s', date(datetime(time / 1000, 'unixepoch'
, 'localtime'
)), 'utc') * 1000 AS time,
8192 AS type,
8192 AS type,
0 AS flag,
0 AS flag,
? AS bufferId,
? AS bufferId,
...
...
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