You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The uploader name is saved inside the streams table. This causes it to be duplicated for each occurence.
With the addition of the url of the uploader (#6919) it makes sense to extract both fields into a seperate table for uploaders and reference it.
The uploader names must to be migrated and the urls should ideally be migrated.
@ktprograms Am i correct in my assesment, that in theory not migrating the url, would only cause some loading extra loading times?
The text was updated successfully, but these errors were encountered:
The uploader url isn't currently in the database. So newly saved videos will insert the url, and for old videos the code fetches it using the extractor, then saves it to the database for the next time.
Checklist
NewPipe/app/src/main/java/org/schabi/newpipe/database/stream/model/StreamEntity.kt
Lines 49 to 50 in 21bcade
The uploader name is saved inside the
streams
table. This causes it to be duplicated for each occurence.With the addition of the url of the uploader (#6919) it makes sense to extract both fields into a seperate table for uploaders and reference it.
The uploader names must to be migrated and the urls should ideally be migrated.
@ktprograms Am i correct in my assesment, that in theory not migrating the url, would only cause some loading extra loading times?
The text was updated successfully, but these errors were encountered: