Checks online status, retrieves names, and will add packages.\ Because of this packages are not added immediatly, only for internal use. :param links: list of urls :param dest: `Destination` :return: None
(self, links, dest=Destination.Queue)
| 448 | |
| 449 | @permission(PERMS.ADD) |
| 450 | def checkAndAddPackages(self, links, dest=Destination.Queue): |
| 451 | """Checks online status, retrieves names, and will add packages.\ |
| 452 | Because of this packages are not added immediatly, only for internal use. |
| 453 | |
| 454 | :param links: list of urls |
| 455 | :param dest: `Destination` |
| 456 | :return: None |
| 457 | """ |
| 458 | data = self.core.pluginManager.parseUrls(links) |
| 459 | self.core.threadManager.createResultThread(data, True) |
| 460 | |
| 461 | |
| 462 | @permission(PERMS.LIST) |
nothing calls this directly
no test coverage detected