mirror of
https://github.com/SimpleMobileTools/Simple-Calendar.git
synced 2025-04-04 05:21:11 +02:00
recheck caldav calendars at startup from a background thread
This commit is contained in:
parent
8cd98798f6
commit
381b2bc999
@ -78,9 +78,9 @@ class MainActivity : SimpleActivity(), NavigationListener {
|
|||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
setContentView(R.layout.activity_main)
|
setContentView(R.layout.activity_main)
|
||||||
|
storeStoragePaths()
|
||||||
calendar_fab.setOnClickListener { launchNewEventIntent() }
|
calendar_fab.setOnClickListener { launchNewEventIntent() }
|
||||||
checkWhatsNewDialog()
|
checkWhatsNewDialog()
|
||||||
storeStoragePaths()
|
|
||||||
|
|
||||||
if (resources.getBoolean(R.bool.portrait_only))
|
if (resources.getBoolean(R.bool.portrait_only))
|
||||||
requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
|
requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT
|
||||||
@ -88,7 +88,7 @@ class MainActivity : SimpleActivity(), NavigationListener {
|
|||||||
if (intent?.action == Intent.ACTION_VIEW && intent.data != null) {
|
if (intent?.action == Intent.ACTION_VIEW && intent.data != null) {
|
||||||
val uri = intent.data
|
val uri = intent.data
|
||||||
if (uri.authority == "com.android.calendar") {
|
if (uri.authority == "com.android.calendar") {
|
||||||
// clicking date on a widget: content://com.android.calendar/time/1507309245683
|
// clicking date on a third party widget: content://com.android.calendar/time/1507309245683
|
||||||
if (intent?.extras?.getBoolean("DETAIL_VIEW", false) == true) {
|
if (intent?.extras?.getBoolean("DETAIL_VIEW", false) == true) {
|
||||||
val timestamp = uri.pathSegments.last()
|
val timestamp = uri.pathSegments.last()
|
||||||
if (timestamp.areDigitsOnly()) {
|
if (timestamp.areDigitsOnly()) {
|
||||||
|
@ -238,8 +238,10 @@ fun Context.getSyncedCalDAVCalendars() = CalDAVHandler(this).getCalDAVCalendars(
|
|||||||
|
|
||||||
fun Context.recheckCalDAVCalendars(callback: () -> Unit) {
|
fun Context.recheckCalDAVCalendars(callback: () -> Unit) {
|
||||||
if (config.caldavSync) {
|
if (config.caldavSync) {
|
||||||
CalDAVHandler(this).refreshCalendars(null, callback)
|
Thread({
|
||||||
updateWidgets()
|
CalDAVHandler(this).refreshCalendars(null, callback)
|
||||||
|
updateWidgets()
|
||||||
|
}).start()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user