this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

tweak

Hailey 6edd6745 b8c8a99e

+3 -2
+2 -1
ios/VideoView.swift
··· 259 259 260 260 self.isViewActive = active 261 261 if active { 262 - if autoplay { 262 + if self.autoplay { 263 263 self.setup() 264 264 } 265 265 } else { ··· 285 285 self.pause() 286 286 } else { 287 287 if self.player == nil { 288 + ViewManager.shared.setActiveView(self) 288 289 self.ignoreAutoplay = true 289 290 self.setup() 290 291 } else {
+1 -1
ios/ViewManager.swift
··· 95 95 } 96 96 } 97 97 98 - private func setActiveView(_ view: VideoView) { 98 + func setActiveView(_ view: VideoView) { 99 99 let didUpdate = view.setIsCurrentlyActive(active: true) 100 100 if didUpdate { 101 101 self.currentlyActiveView = view