diff --git a/Userland/Applications/SoundPlayer/M3UParser.cpp b/Userland/Applications/SoundPlayer/M3UParser.cpp index 96624b2c15..f950b40784 100644 --- a/Userland/Applications/SoundPlayer/M3UParser.cpp +++ b/Userland/Applications/SoundPlayer/M3UParser.cpp @@ -48,20 +48,20 @@ NonnullOwnPtr> M3UParser::parse(bool include_extended_info) { auto vec = make>(); - bool has_exteded_info_tag = false; + bool has_extended_info_tag = false; if (!m_use_utf8) { auto lines = m_m3u_raw_data.split_view('\n'); if (include_extended_info) { if (lines[0] == "#EXTM3U") - has_exteded_info_tag = true; + has_extended_info_tag = true; } M3UExtendedInfo metadata_for_next_file {}; for (auto& line : lines) { line = line.trim_whitespace(); M3UEntry entry {}; - if (line.starts_with('#') && has_exteded_info_tag) { + if (line.starts_with('#') && has_extended_info_tag) { if (line.starts_with("#EXTINF:")) { auto data = line.substring_view(8); auto separator = data.find(',');