()
| 177 | } |
| 178 | |
| 179 | get sdk(): ProtonDriveClient | ProtonDrivePhotosClient { |
| 180 | if (this.usePhotoSdk()) { |
| 181 | return this.photosSdk; |
| 182 | } |
| 183 | return this.driveSdk; |
| 184 | } |
| 185 | |
| 186 | private usePhotoSdk(): boolean { |
| 187 | const photoPaths = [ |
nothing calls this directly
no test coverage detected