issue report.yml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. name: Issue Report
  2. description: File an issue report
  3. labels: [bug, triage]
  4. body:
  5. - type: markdown
  6. id: introduction
  7. attributes:
  8. value: |
  9. ### Thank you for taking the time to report an issue!
  10. Please keep in mind that Jellyfin is a [free and open-source](https://jellyfin.org/docs/general/about) project, made up entirely and exclusively of **volunteers** who donate their free time to the project.
  11. - type: checkboxes
  12. id: before-posting
  13. attributes:
  14. label: "This issue respects the following points:"
  15. description: All conditions are **required**. Failure to comply with any of these conditions may cause your issue to be closed without comment.
  16. options:
  17. - label: This is a **bug**, not a question or a configuration issue; Please visit our forum or chat rooms first to troubleshoot with volunteers, before creating a report. The links can be found [here](https://jellyfin.org/contact/).
  18. required: true
  19. - label: This issue is **not** already reported on [GitHub](https://github.com/jellyfin/jellyfin/issues?q=is%3Aopen+is%3Aissue) _(I've searched it)_.
  20. required: true
  21. - label: I'm using an up to date version of Jellyfin Server stable, unstable or master; We generally do not support previous older versions. If possible, please update to the latest version before opening an issue.
  22. required: true
  23. - label: I agree to follow Jellyfin's [Code of Conduct](https://jellyfin.org/docs/general/community-standards.html#code-of-conduct).
  24. required: true
  25. - label: This report addresses only a single issue; If you encounter multiple issues, kindly create separate reports for each one.
  26. required: true
  27. - type: markdown
  28. id: preliminary-information
  29. attributes:
  30. value: |
  31. ### General preliminary information
  32. Please keep the following in mind when creating this issue:
  33. 1. Fill in as much of the template as possible. When you are unsure about the relevancy of a section, do include the information requested in that section. Only leave out information in sections when you are completely sure about it not being relevant.
  34. 2. Provide as much detail as possible. Do not assume other people to know what is going on.
  35. 3. Keep everything readable and structured. Nobody enjoys reading poorly written reports that are difficult to understand.
  36. 4. Keep an eye on your report as long as it is open, your involvement might be requested at a later moment.
  37. 5. Keep the title short and descriptive. The title is not the place to write down a full description of the issue.
  38. 6. When deciding to leave out information in a field, leave it blank and empty. Avoid writing things such as `n/a` for empty fields.
  39. - type: textarea
  40. id: bug-description
  41. attributes:
  42. label: Description of the bug
  43. description: Please provide a detailed description on the bug you encountered, in a readable and comprehensible way.
  44. placeholder: |
  45. After upgrading to version x.y.z of Jellyfin, the "login disclaimer" is showing incorrect text. It appears to me that it is appending the server name to the end of the login disclaimer, and showing that to a user. It might be a regression from pull request x. I have tried rebooting my host as well as my container multiple times. I tested this functionality on different clients, and it happens to all the tested clients (client x, y, z), that support the login disclaimer functionality. This makes me believe it is a server side issue.
  46. validations:
  47. required: true
  48. - type: textarea
  49. id: repro-steps
  50. attributes:
  51. label: Reproduction steps
  52. description: Reproduction steps should be complete and self-contained. Anyone can reproduce this issue by following these steps. Furthermore, the steps should be clear and easy to follow.
  53. placeholder: |
  54. 1. Sign in on the Jellyfin web client, with an admin account, using a browser of your choice.
  55. 2. Navigate to the dashboard.
  56. 3. Select "general".
  57. 4. Change the login disclaimer to something like "I am a cool disclaimer!"
  58. 5. Save the settings.
  59. 6. Sign out.
  60. 7. Make sure you are on the sign in screen. Otherwise, navigate to the sign in screen manually.
  61. validations:
  62. required: true
  63. - type: textarea
  64. id: actual-behavior
  65. attributes:
  66. label: What is the current _bug_ behavior?
  67. description: Write down the incorrect behavior that currently happens after following the reproduction steps.
  68. placeholder: |
  69. The login disclaimer on the sign in screen has the server name appended to the text. The text shown is: "I am a cool disclaimer!jellyfinserver".
  70. validations:
  71. required: true
  72. - type: textarea
  73. id: expected-behavior
  74. attributes:
  75. label: What is the expected _correct_ behavior?
  76. description: Write down the correct expected behavior that is supposed to happen after following the reproduction steps.
  77. placeholder: |
  78. The login disclaimer on the sign in screen should only show the configured text. The text that should be shown is: "I am a cool disclaimer!".
  79. validations:
  80. required: true
  81. - type: dropdown
  82. id: version
  83. attributes:
  84. label: Jellyfin Server version
  85. description: What version of Jellyfin are you using?
  86. options:
  87. - 10.10.0+
  88. - Master
  89. - Unstable
  90. - Older*
  91. validations:
  92. required: true
  93. - type: input
  94. id: version-master
  95. attributes:
  96. label: "Specify commit id"
  97. description: Fill in this field in case the option 'master' is selected. Provide the commit id it was built on.
  98. placeholder: |
  99. 610e56baafc3011e1bfa043bdabb567bda0c2ab0
  100. - type: input
  101. id: version-unstable
  102. attributes:
  103. label: "Specify unstable release number"
  104. description: Fill in this field in case the option 'unstable' is selected. Provide the unstable release number.
  105. placeholder: |
  106. 2024050906
  107. - type: input
  108. id: version-older
  109. attributes:
  110. label: "Specify version number"
  111. description: Fill in this field in case the option 'older' is selected. Provide the version number.
  112. placeholder: |
  113. x.y.z
  114. - type: input
  115. id: build-version
  116. attributes:
  117. label: "Specify the build version"
  118. description: Please provide the build version that is shown in the dashboard.
  119. validations:
  120. required: true
  121. - type: textarea
  122. id: environment-information
  123. attributes:
  124. label: Environment
  125. description: |
  126. Accurately fill in as much environment details as possible. If a certain environment field is not shown in the template below, but you consider useful information, please include it.
  127. Examples:
  128. - **OS**: [e.g. Debian 11, Windows 10]
  129. - **Linux Kernel**: [e.g. none, 5.15, 6.1, etc.]
  130. - **Virtualization**: [e.g. Docker, KVM, LXC]
  131. - **Clients**: [Browser, Android, Fire Stick, etc.]
  132. - **Browser**: [e.g. Firefox 91, Chrome 93, Safari 13]
  133. - **FFmpeg Version**: [e.g. 5.1.2-Jellyfin]
  134. - **Playback**: [Direct Play, Remux, Direct Stream, Transcode]
  135. - **Hardware Acceleration**: [e.g. none, VAAPI, NVENC, etc.]
  136. - **GPU Model**: [e.g. none, UHD630, GTX1050, etc.]
  137. - **Installed Plugins**: [e.g. none, Fanart, Anime, etc.]
  138. - **Reverse Proxy**: [e.g. none, nginx, apache, etc.]
  139. - **Base URL**: [e.g. none, yes: /example]
  140. - **Networking**: [e.g. Host, Bridge/NAT]
  141. - **Storage**: [e.g. local, NFS, cloud]
  142. value: |
  143. - OS:
  144. - Linux Kernel:
  145. - Virtualization:
  146. - Clients:
  147. - Browser:
  148. - FFmpeg Version:
  149. - Playback Method:
  150. - Hardware Acceleration:
  151. - GPU Model:
  152. - Plugins:
  153. - Reverse Proxy:
  154. - Base URL:
  155. - Networking:
  156. - Storage:
  157. render: markdown
  158. validations:
  159. required: true
  160. - type: markdown
  161. id: general-information-logs
  162. attributes:
  163. value: |
  164. When providing logs, please keep the following things in mind:
  165. 1. **DO NOT** use external paste services. If logs are too large to paste into the field, upload them as text files.
  166. 2. Please provide complete logs.
  167. - For server logs, ensure to capture all relevant information, encompassing both the events leading up to and following the occurrence of the issue. Typically, providing 10 *lines preceding and succeeding* the problem should be adequate.
  168. - For ffmpeg logs, please provide the entire file unmodified.
  169. 3. Please do not run logs through any translation program. We exclusively accept raw, untranslated logs. Particularly exercise caution if your browser automatically translates pages by default.
  170. - Do not forget to censor out personal information such as public IP addresses.
  171. 4. Please do not include logs as screenshots, with the only exception being client logs in browsers.
  172. - type: textarea
  173. id: jellyfin-logs
  174. attributes:
  175. label: Jellyfin logs
  176. description: Please copy and paste any relevant log output. This can be found in Dashboard > Logs.
  177. render: shell
  178. validations:
  179. required: true
  180. - type: textarea
  181. id: ffmpeg-logs
  182. attributes:
  183. label: FFmpeg logs
  184. description: Relevant FFmpeg log output. This can be found in Dashboard > Logs > FFmpeg*.log. This field is considered mandatory for transcoding related issues. It's also important to include the specific codec details.
  185. render: shell
  186. - type: textarea
  187. id: browser-logs
  188. attributes:
  189. label: Client / Browser logs
  190. description: Access browser logs by using the F12 to bring up the console. Screenshots are typically easier to read than raw logs. For clients such as Android or iOS, please see our documentation.
  191. - type: textarea
  192. id: screenshots
  193. attributes:
  194. label: Relevant screenshots or videos
  195. description: Attach relevant screenshots or videos related to this report.
  196. - type: textarea
  197. id: additional-information
  198. attributes:
  199. label: Additional information
  200. description: Any additional information that might be useful to this issue.