isConnected checks if this rclone is authenticated to Plex
()
| 236 | |
| 237 | // isConnected checks if this rclone is authenticated to Plex |
| 238 | func (p *plexConnector) isConnected() bool { |
| 239 | p.runningMu.Lock() |
| 240 | defer p.runningMu.Unlock() |
| 241 | return p.running |
| 242 | } |
| 243 | |
| 244 | // isConfigured checks if this rclone is configured to use a Plex server |
| 245 | func (p *plexConnector) isConfigured() bool { |
no test coverage detected