Quellcode durchsuchen

Fix ownersOf() returning authors

tags/v0.1.0
Fen Dweller vor 6 Jahren
Ursprung
Commit
e1830a9fad
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. +1
    -1
      media/attribution.js

+ 1
- 1
media/attribution.js Datei anzeigen

@@ -11365,7 +11365,7 @@ function authorsOfFull(file) {

function ownersOf(file) {
if (attribution.files[file])
return attribution.files[file].authors;
return attribution.files[file].owners;
else {
const found = attribution.prefixes[Object.keys(attribution.prefixes).find(path => {
return (file.indexOf(path) == 0);


Laden…
Abbrechen
Speichern