Prefix on catalog names
Opened this issue · 3 comments
duoi commented
Hi,
I'm trying to understand what causes the prefix in catalog names. I notice different rendering on the web and installable players (postfix and prefix, respectively). Ideally I'd like to remove or disable it.
Does it have something to do with type
? or maybe something to do with idPrefixes
? Or is it something we can't control at all?
The below is a sample of the manifest.json
that is passed through. Thanks in advance.
{
"id": "community.trakt-tv",
"version": "0.2.7",
"name": "Trakt Tv",
"description": "Addon for getting Trakt's public and user lists, recommendations and watch list.\n token expires on: 1/8/2025, 11:47:58 AM",
"logo": "https://2ecbbd610840-trakt.baby-beamup.club/public/logoPS.png?ver=0.2.7",
"background": "https://2ecbbd610840-trakt.baby-beamup.club/public/background.png?ver=0.2.7",
"catalogs": [
{
"type": "trakt",
"id": "trakt_search_movies",
"name": "trakt - search movies",
"extra": [
{
"name": "search",
"isRequired": true
}
]
},
{
"type": "trakt",
"id": "trakt_search_series",
"name": "search series",
"extra": [
{
"name": "search",
"isRequired": true
}
]
}
],
"resources": [
{
"name": "meta",
"types": [
"series",
"movie"
],
"idPrefixes": [
"trakt:"
]
}
],
"types": [],
"idPrefixes": [
"trakt"
],
"behaviorHints": {
"configurable": true,
"configurationRequired": false
}
}
jaruba commented
It is uncontrollable from the addon's side, each app chooses how to display the catalog names, it is a combination of the addon name and actual catalog name in order to distinguish catalogs that may have the same name across multiple addons