diff --git a/3rdparty/cpr b/3rdparty/cpr index feebd2f..07d784c 160000 --- a/3rdparty/cpr +++ b/3rdparty/cpr @@ -1 +1 @@ -Subproject commit feebd2fd5467e219cf124acb5de3f8eee0d0970b +Subproject commit 07d784ccfe6760fc6da47c24f7326e64d8e11460 diff --git a/3rdparty/jwt-cpp b/3rdparty/jwt-cpp index 27f3298..65b632b 160000 --- a/3rdparty/jwt-cpp +++ b/3rdparty/jwt-cpp @@ -1 +1 @@ -Subproject commit 27f32983fb310f4406e6da6c43700202c93bf18c +Subproject commit 65b632b674da7fcc189adf7336c652108188aa29 diff --git a/3rdparty/oatpp b/3rdparty/oatpp index 5b4b313..afbafe4 160000 --- a/3rdparty/oatpp +++ b/3rdparty/oatpp @@ -1 +1 @@ -Subproject commit 5b4b313a0bc57e48abfd9c85d7d7c42a1bbdef70 +Subproject commit afbafe447ff447db5ab227022eb4a568da97d16b diff --git a/3rdparty/taglib b/3rdparty/taglib index 79bc9cc..e36a9ca 160000 --- a/3rdparty/taglib +++ b/3rdparty/taglib @@ -1 +1 @@ -Subproject commit 79bc9ccf8ea5606da2a86e1bfb5439e73a146272 +Subproject commit e36a9cabb9882e61276161c23834d966d62073b7 diff --git a/include/callback/StreamCallback.h b/include/callback/StreamCallback.h index f0e56fc..862c20a 100644 --- a/include/callback/StreamCallback.h +++ b/include/callback/StreamCallback.h @@ -12,7 +12,7 @@ namespace callback { StreamCallback(); StreamCallback(const std::string&); - oatpp::data::v_io_size read(void*, oatpp::data::v_io_size); + oatpp::v_io_size read(void*, oatpp::v_io_size); private: std::string m_songPath; diff --git a/include/controller/SongController.hpp b/include/controller/SongController.hpp index e9209fa..e6311c7 100644 --- a/include/controller/SongController.hpp +++ b/include/controller/SongController.hpp @@ -221,7 +221,7 @@ namespace controller { songDb = songRepo.retrieveRecord(songDb, type::SongFilter::id); - oatpp::data::v_io_size dSize = 1024; + auto dSize = 1024; auto db = std::make_shared( std::make_shared(songDb.songPath), diff --git a/src/callback/StreamCallback.cpp b/src/callback/StreamCallback.cpp index 0e0cca6..9c70f79 100644 --- a/src/callback/StreamCallback.cpp +++ b/src/callback/StreamCallback.cpp @@ -18,7 +18,7 @@ namespace callback { } - oatpp::data::v_io_size StreamCallback::read(void *buff, oatpp::data::v_io_size count) { + oatpp::v_io_size StreamCallback::read(void *buff, oatpp::v_io_size count) { if (m_counter >= m_fileSize) { std::cout << "done streaming song\n"; return 0;