Mirror von
https://github.com/Chaoscaot/schemsearch
synchronisiert 2024-11-19 10:20:08 +01:00
Fix SQL
Dieser Commit ist enthalten in:
Ursprung
4671f38591
Commit
7d9e7f28a9
@ -15,11 +15,11 @@
|
|||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
use std::io::Cursor;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
#[cfg(feature = "sql")]
|
#[cfg(feature = "sql")]
|
||||||
use futures::executor::block_on;
|
use futures::executor::block_on;
|
||||||
#[allow(unused_imports)]
|
use schemsearch_files::SchematicVersioned;
|
||||||
use schemsearch_files::SpongeV2Schematic;
|
|
||||||
#[cfg(feature = "sql")]
|
#[cfg(feature = "sql")]
|
||||||
use schemsearch_sql::{load_schemdata, SchematicNode};
|
use schemsearch_sql::{load_schemdata, SchematicNode};
|
||||||
|
|
||||||
@ -47,8 +47,8 @@ pub struct SqlSchematicSupplier {
|
|||||||
#[cfg(feature = "sql")]
|
#[cfg(feature = "sql")]
|
||||||
impl SqlSchematicSupplier {
|
impl SqlSchematicSupplier {
|
||||||
pub fn get_schematic(&self) -> Result<SchematicVersioned, String> {
|
pub fn get_schematic(&self) -> Result<SchematicVersioned, String> {
|
||||||
let schemdata = block_on(load_schemdata(self.node.id));
|
let mut schemdata = block_on(load_schemdata(self.node.id));
|
||||||
SchematicVersioned::load_data(schemdata.as_slice())
|
SchematicVersioned::load_data(&mut Cursor::new(schemdata.as_mut_slice()))
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn get_name(&self) -> String {
|
pub fn get_name(&self) -> String {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren