* force file order
This commit is contained in:
parent
3a06c4f7ef
commit
25bf8e1092
|
@ -2,7 +2,7 @@ package net.filebot.web;
|
|||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.HashMap;
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Map;
|
||||
import java.util.Scanner;
|
||||
import java.util.logging.Level;
|
||||
|
@ -28,7 +28,7 @@ public class ID3Lookup implements MusicIdentificationService {
|
|||
|
||||
@Override
|
||||
public Map<File, AudioTrack> lookup(Iterable<File> files) throws Exception {
|
||||
Map<File, AudioTrack> info = new HashMap<File, AudioTrack>();
|
||||
Map<File, AudioTrack> info = new LinkedHashMap<File, AudioTrack>();
|
||||
|
||||
MediaInfo mediaInfo = new MediaInfo();
|
||||
for (File f : files) {
|
||||
|
|
Loading…
Reference in New Issue