Skip to content

Commit 2edf28c

Browse files
committed
Fix line length in EditPostActivity
1 parent 522f829 commit 2edf28c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

WordPress/src/main/java/org/wordpress/android/ui/posts/EditPostActivity.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,9 +526,10 @@ class EditPostActivity : BaseAppCompatActivity(), EditorFragmentActivity, Editor
526526
super.onCreate(savedInstanceState)
527527
(application as WordPress).component().inject(this)
528528
initializeViewModels()
529-
529+
530530
// Track if this editor launch came via EditorLauncher (only on initial creation)
531-
if (savedInstanceState == null && intent.getBooleanExtra(EditorLauncher.EXTRA_LAUNCHED_VIA_EDITOR_LAUNCHER, false)) {
531+
if (savedInstanceState == null
532+
&& intent.getBooleanExtra(EditorLauncher.EXTRA_LAUNCHED_VIA_EDITOR_LAUNCHER, false)) {
532533
analyticsTrackerWrapper.track(Stat.EDITOR_LAUNCHED_VIA_EDITOR_LAUNCHER)
533534
}
534535

0 commit comments

Comments
 (0)