Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
KDE Connect Android
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
30
Merge Requests
30
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Network
KDE Connect Android
Commits
a9508a7f
Commit
a9508a7f
authored
Jul 05, 2019
by
Albert Vaca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lock before first access as per CR
parent
bfadb84b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
src/org/kde/kdeconnect/Plugins/SMSPlugin/SMSPlugin.java
src/org/kde/kdeconnect/Plugins/SMSPlugin/SMSPlugin.java
+5
-3
No files found.
src/org/kde/kdeconnect/Plugins/SMSPlugin/SMSPlugin.java
View file @
a9508a7f
...
...
@@ -182,16 +182,18 @@ public class SMSPlugin extends Plugin {
*/
@Override
public
void
onChange
(
boolean
selfChange
)
{
// Lock so no one uses the mostRecentTimestamp between the moment we read it and the
// moment we update it. This is because reading the Messages DB can take long.
mostRecentTimestampLock
.
lock
();
if
(
mostRecentTimestamp
==
0
)
{
// Since the timestamp has not been initialized, we know that nobody else
// has requested a message. That being the case, there is most likely
// nobody listening for message updates, so just drop them
mostRecentTimestampLock
.
unlock
();
return
;
}
// Lock so no one uses the mostRecentTimestamp between the moment we read it and the
// moment we update it. This is because reading the Messages DB can take long.
mostRecentTimestampLock
.
lock
();
SMSHelper
.
Message
message
=
SMSHelper
.
getNewestMessage
(
context
);
if
(
message
==
null
||
message
.
date
<=
mostRecentTimestamp
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment