HMS

Home Media Server for Roku Players
git clone https://www.brianlane.com/git/HMS
Log | Files | Refs | README | LICENSE

commit 9880d299fde0bb705dbe3e1d906b258038f07748
parent eea48faf5b901e61766ae7c6673c67dc899db39e
Author: Brian C. Lane <bcl@brianlane.com>
Date:   Mon, 14 Nov 2022 17:38:20 -0800

Disable reading description file

This has never been used for anything, and because of the design of
SceneGraph it is difficult to read a file at this point so just remove
it.

Diffstat:
MHMS/source/getCategoryMetadata.brs | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/HMS/source/getCategoryMetadata.brs b/HMS/source/getCategoryMetadata.brs @@ -91,9 +91,10 @@ Function MovieObject(file As Object, url As String, listing_hash as Object) As O o.HDBifUrl = url+file[1]["basename"]+"-HD.bif" end if - if listing_hash.DoesExist(file[1]["basename"]+".txt") then - o.Description = getDescription(url+file[1]["basename"]+".txt") - end if +' NOTE: Cannot easily just read a file in this function +' if listing_hash.DoesExist(file[1]["basename"]+".txt") then +' o.Description = getDescription(url+file[1]["basename"]+".txt") +' end if o.HDBranded = false o.Rating = "NR"