Skip to content

Commit

Permalink
Consider any file received on a service accouncement TMGI as containi…
Browse files Browse the repository at this point in the history
…ng the SA (#24)
  • Loading branch information
kuehnhammer authored May 23, 2022
1 parent 6ad17e0 commit e71e8f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Middleware.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void MBMS_RT::Middleware::tick_handler()
auto files = service->fileList();
for (const auto& file : files) {
//_downloaded_files.insert_or_assign(file.location(), file);
if (file->meta().content_location.find("bootstrap.multipart") != std::string::npos && service->isServiceAnnouncement()) {
if (service->isServiceAnnouncement()) {
if (!service->bootstrapped()) {
service->tryParseBootstrapFile(file->buffer());
}
Expand Down

0 comments on commit e71e8f9

Please sign in to comment.