We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7d66ba commit 686ce6aCopy full SHA for 686ce6a
www/nodejs-project/modules/streamer/streamer.js
@@ -68,6 +68,7 @@ class StreamerTools extends Events {
68
const cachingKey = this.infoCacheKey(url), skipSample = entry.skipSample || entry.allowBlindTrust || (entry.skipSample !== false && this.streamInfo.mi.isVideo(url))
69
if(cachingKey && this.streamInfoCaching[cachingKey] && now < this.streamInfoCaching[cachingKey].until) {
70
if(skipSample || (this.streamInfoCaching[cachingKey].sample && this.streamInfoCaching[cachingKey].sample.length)) {
71
+ this.streamInfoCaching[cachingKey].url = url // avoid reopening same URL
72
return this.streamInfoCaching[cachingKey]
73
}
74
0 commit comments