Skip to content

Commit

Permalink
linting: line length
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnstn committed Jan 15, 2024
1 parent 07981f2 commit 28a517e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ class RetryFailedMediaUploadUseCase @Inject constructor(
editorMediaListener,
mediaModels
)
val site: SiteModel? = siteStore.getSiteByLocalId(editorMediaListener.getImmutablePost().localSiteId)
val siteId = editorMediaListener.getImmutablePost().localSiteId
val site: SiteModel? = siteStore.getSiteByLocalId(siteId)
AnalyticsUtils.trackWithSiteDetails(tracker, Stat.EDITOR_UPLOAD_MEDIA_RETRIED, site, null);
}
}
Expand Down

0 comments on commit 28a517e

Please sign in to comment.