···91919292 This option comes with some trade-offs: MS will aggressively detect repeated tracks within a window of time that should eliminate all duplicates. However, this will also prevent *intentionally* repeated tracks from being scrobbled. See [this thread](https://github.com/FoxxMD/multi-scrobbler/pull/296#issuecomment-2970417070) for more information on how this works.
93939494+ ### Family account
9595+9696+ Multi-scrobbler can monitor listening history for accounts linked to a [Deezer Family Account](https://www.deezer.com/en/offers/family).
9797+9898+ <details>
9999+100100+ <summary>Instructions</summary>
101101+102102+ Start multi-scrobbler using the [ARL](#retrieve-arl) for the **main account**.
103103+104104+ In the logs look for **Linked Accounts** associated with the Deezer Source. It will look something like this:
105105+106106+ ```
107107+ VERBOSE: [App] [Sources] [Deezer - MyDeezer] Linked Accounts:
108108+ Name: Joe | ID: 166276334 | Private?: Yes
109109+ Name: Mary | ID: 48475231 | Private?: Yes
110110+ Name: FoxxMD | ID: 896225281 | Private?: No
111111+ Name: Cool Guy | ID: 128522478 | Private?: Yes
112112+ ```
113113+114114+ The Account **ID** you want to monitor should be set:
115115+116116+ * ENV Config => `DEEZER_ACCOUNT_ID=896225281`
117117+ * File Config => `"accountId": "896225281"` in the `data` section of your config
118118+119119+ Restart multi-scrobbler to start monitoring that account.
120120+121121+ :::warning[Restrictions]
122122+123123+ Deezer may not return the correct listening history under these circumstances:
124124+125125+ * The ARL used is **not** for the main account
126126+ * If you can get an ARL specifically for the linked account (login as the linked account), use that **instead** of family `accountId`
127127+ * The ARL account is private
128128+ * The linked account to be monitored ( using `accountId`) is private
129129+130130+ :::
131131+ </details>
132132+133133+134134+94135 </TabItem>
95136 <TabItem value="official" label="Official API">
96137
···3939 * @default "Mozilla/5.0 (X11; Linux i686; rv:135.0) Gecko/20100101 Firefox/135.0"
4040 */
4141 userAgent?: string
4242+4343+ /** The ID (USER_ID) of the linked account to monitor. If not set, monitors the main ARL account */
4444+ accountId?: string
4245}
43464447export interface DeezerInternalSourceConfig extends CommonSourceConfig {