Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
Python-PlexAPI
==============
.. image:: https://github.com/pkkid/python-plexapi/workflows/CI/badge.svg
:target: https://github.com/pkkid/python-plexapi/actions?query=workflow%3ACI
.. image:: https://github.com/pushingkarmaorg/python-plexapi/workflows/CI/badge.svg
:target: https://github.com/pushingkarmaorg/python-plexapi/actions?query=workflow%3ACI
.. image:: https://readthedocs.org/projects/python-plexapi/badge/?version=latest
:target: http://python-plexapi.readthedocs.io/en/latest/?badge=latest
.. image:: https://codecov.io/gh/pkkid/python-plexapi/branch/master/graph/badge.svg?token=fOECznuMtw
:target: https://codecov.io/gh/pkkid/python-plexapi
.. image:: https://img.shields.io/github/tag/pkkid/python-plexapi.svg?label=github+release
:target: https://github.com/pkkid/python-plexapi/releases
.. image:: https://codecov.io/gh/pushingkarmaorg/python-plexapi/branch/master/graph/badge.svg?token=fOECznuMtw
:target: https://codecov.io/gh/pushingkarmaorg/python-plexapi
.. image:: https://img.shields.io/github/tag/pushingkarmaorg/python-plexapi.svg?label=github+release
:target: https://github.com/pushingkarmaorg/python-plexapi/releases
.. image:: https://badge.fury.io/py/PlexAPI.svg
:target: https://badge.fury.io/py/PlexAPI
.. image:: https://img.shields.io/github/last-commit/pkkid/python-plexapi.svg
:target: https://img.shields.io/github/last-commit/pkkid/python-plexapi.svg
.. image:: https://img.shields.io/github/last-commit/pushingkarmaorg/python-plexapi.svg
:target: https://img.shields.io/github/last-commit/pushingkarmaorg/python-plexapi.svg


Overview
Expand Down
2 changes: 1 addition & 1 deletion plexapi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ def sendCommand(self, command, proxy=None, **params):
proxy = self._proxyThroughServer if proxy is None else proxy
query = self._server.query if proxy else self.query

# Workaround for ptp. See https://github.com/pkkid/python-plexapi/issues/244
# Workaround for ptp. See https://github.com/pushingkarmaorg/python-plexapi/issues/244
t = time.time()
if command == 'timeline/poll':
self._last_call = t
Expand Down
2 changes: 1 addition & 1 deletion plexapi/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def _myPlexClientPorts(self):
""" Sometimes the PlexServer does not properly advertise port numbers required
to connect. This attempts to look up device port number from plex.tv.
See issue #126: Make PlexServer.clients() more user friendly.
https://github.com/pkkid/python-plexapi/issues/126
https://github.com/pushingkarmaorg/python-plexapi/issues/126
"""
try:
ports = {}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ dynamic = ["version"]
alert = ["websocket-client>=1.3.3"]

[project.urls]
Homepage = "https://github.com/pkkid/python-plexapi"
Homepage = "https://github.com/pushingkarmaorg/python-plexapi"
Documentation = "https://python-plexapi.readthedocs.io"

[tool.setuptools.dynamic]
Expand Down
6 changes: 5 additions & 1 deletion tests/test_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,11 @@ def test_server_transcodeImage(tmpdir, plex, movie):
opacity_background_url = plex.transcodeImage(original_url, height, width, opacity=0, background=background, blur=100)
blend_url = plex.transcodeImage(original_url, height, width, blendColor=blend, blur=1000)
online_no_upscale_url = plex.transcodeImage(
"https://raw.githubusercontent.com/pkkid/python-plexapi/master/tests/data/cute_cat.jpg", 1000, 1000, upscale=False)
"https://raw.githubusercontent.com/pushingkarmaorg/python-plexapi/master/tests/data/cute_cat.jpg",
1000,
1000,
upscale=False
)

original_img = download(
original_url, plex._token, savepath=str(tmpdir), filename="original_img",
Expand Down
Loading