1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Use getSiblingFile in more places

This commit is contained in:
Tom Poole 2024-11-20 10:10:35 +00:00
parent 5d5fdaf008
commit 5737c42ccf
7 changed files with 17 additions and 17 deletions

View file

@ -1299,7 +1299,7 @@ private:
}
else
{
auto linkedFile = originalFile.getParentDirectory().getChildFile (link);
auto linkedFile = originalFile.getSiblingFile (link);
if (linkedFile.existsAsFile())
inputStream = linkedFile.createInputStream();