mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
check QSO_DATE in ADIF everytime in uppercase
This commit is contained in:
@@ -13,7 +13,7 @@ $(document).ready(function(){
|
||||
fileReader.onloadend = function() {
|
||||
arrayBuffer = this.result;
|
||||
let chker = partof(arrayBuffer,4096);
|
||||
if (chker.includes('<QSO_DATE')) {
|
||||
if (chker.toUpperCase().includes('<QSO_DATE')) {
|
||||
zip.file(file.name, arrayBuffer, { binary:true });
|
||||
zip.generateAsync({type:"blob", compression:"DEFLATE"}).then(function(content){
|
||||
|
||||
|
||||
Reference in New Issue
Block a user